import * as react_jsx_runtime from 'react/jsx-runtime'; type BigTextFont = 'block' | 'simple'; interface BigTextProps { children: string; color?: string; font?: BigTextFont; } declare function BigText({ children, color, font }: BigTextProps): react_jsx_runtime.JSX.Element; export { BigText as B, type BigTextFont as a, type BigTextProps as b };