/** * The wrapper component for the Typography component that renders as an HTML heading tag. * This component is used to create specific headings in the UI. * This component changes its appearance by means of a prop `variant`. * It is rendered as an HTML tag matching the names passed to `tag`, and can pass the HTML standard attributes of the * specified HTML heading tag as is. * h1, h2, h3, h4, h5, h6 * * Also extends the props of heading elements. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements */ export declare const Heading: import("react").ForwardRefExoticComponent<{ variant: "pageHeading1" | "pageHeading2" | "sectionHeading1" | "sectionHeading2" | "contentHeading"; tag: "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; } & Omit, HTMLHeadingElement>, "ref"> & import("react").RefAttributes>;