import * as React from 'react'; import { Color } from '../../interfaces'; export interface HeadingProps { /** Size/Tag of heading */ appearance?: 'H1' | 'H2' | 'H3' | 'H4'; /** Heading content */ children: React.ReactNode | React.ReactNode[]; /** Color of the text */ color?: Color; } declare const Heading: ({ appearance, children, color, ...other }: HeadingProps) => JSX.Element | null; export default Heading;