/// import { TextProps } from '../Text'; export interface HeadingProps extends TextProps { level: 1 | 2 | 3 | 4 | 5 | 6; } export declare function Heading(props: HeadingProps): JSX.Element;