import { type ComponentPropsWithoutRef } from 'react'; export type HeadingProps = { /** * Specify the variant of heading from pageHeading1, pageHeading2, sectionHeading1, sectionHeading2 and contentHeading. */ variant: 'pageHeading1' | 'pageHeading2' | 'sectionHeading1' | 'sectionHeading2' | 'contentHeading'; /** * Specify the tag of heading component. */ tag: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; } & ComponentPropsWithoutRef<'h1'>;