UNPKG

ink

Version:
5 lines (4 loc) 270 B
import { type LiteralUnion } from 'type-fest'; import { type ForegroundColorName } from 'ansi-styles'; export type BackgroundColor = LiteralUnion<ForegroundColorName, string>; export declare const backgroundContext: import("react").Context<BackgroundColor | undefined>;