import { HeadingSize } from '../../tokens/heading-sizes/HeadingSizes'; import { HTMLAttributes, ReactNode } from 'react'; export interface HeadingProps extends HTMLAttributes { /** Controls which heading element will be rendered. Should not be used to affect appearance. */ as: HeadingSize; /** The content of the heading */ children: ReactNode; /** If provided, changes the appearance of the heading */ feStyledAs?: HeadingSize; } /** * The `` component is to deliniate content on a page. When using, take note not to skip heading levels.
* It extends the interface of native html `

` to `

` elements. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/folder/619622199069cd7d11104ff9) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements) for further information about the element and related attributes. */ declare const Heading: import("react").ForwardRefExoticComponent>; export default Heading;