import { ComponentProps, FC } from 'react'; import { Color } from './types/color'; import { Size } from './types/size'; type Props = { color?: Color; size?: Size; bold?: boolean; }; export declare const Hero: FC, keyof Props> & Props>; export {};