import { FC, ReactNode } from 'react'; import { VisualSizesEnum } from '../../helpers/fontHelpers'; interface HeadingProps { /** The content of the heading */ children: ReactNode; /** The size of the heading. */ size?: VisualSizesEnum; /** Color of the text. */ color?: string; } export declare const Heading: FC; export {};