import { type HeadingProps as PrimerHeadingProps } from '@primer/react'; import type { ForwardRefComponent } from '../polymorphic'; import { type SxProp } from '../sx'; type HeadingLevels = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; type HeadingProps = PrimerHeadingProps & SxProp; declare const Heading: ForwardRefComponent; export { Heading, type HeadingProps }; //# sourceMappingURL=Heading.d.ts.map