import { HeadingModifiers, TextProps } from '../text/text'; export type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6; export type HeadingProps = Omit & { /** * Semantic heading tag * h1-h6 are allowed values * @default h1 */ element?: Extract; }; export declare const Heading: (props: HeadingProps) => import("react/jsx-runtime").JSX.Element;