import { ComponentPropsWithoutRef } from 'react'; type Types = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; type HeadingProps = Omit, 'as'> & { as?: T; }; declare function Heading({ as, className, ...props }: HeadingProps): React.ReactElement; export { Heading };