import { ReactNode, FC } from 'react'; export interface HeadingProps { /** Render content */ children: ReactNode | string; /** Overwrite className */ className?: string; /** Use dark colors palette*/ darkMode?: boolean; /** Set importance. Match with h1, h2, h3 and h4 */ type: 'h1' | 'h2' | 'h3' | 'h4'; } declare const Heading: FC; export default Heading;