import { FC } from './jsx/core'; import type { Background as _Background, Color as _Color, Modifier as _Modifier } from './utils'; import type { TextProps } from './utils'; import { code } from './utils/code'; export { code }; export declare const Box: FC<{ big?: boolean; children?: any; }>; export declare const Text: FC; export declare const Modifier: FC<{ modifier: _Modifier; children?: any; }>; export declare const Bold: (props: any) => string; export declare const Color: FC<{ color: _Color; children?: any; }>; export declare const Blue: (props: any) => string; export declare const Green: (props: any) => string; export declare const Yellow: (props: any) => string; export declare const Red: (props: any) => string; export declare const Gray: (props: any) => string; export declare const Cyan: (props: any) => string; export declare const Background: FC<{ color: _Background; children?: any; }>;