import { default as Hero } from './hero'; import { default as H1 } from './h1'; import { default as H2 } from './h2'; import { default as H3 } from './h3'; import { default as H4 } from './h4'; import { default as H5 } from './h5'; import { default as H6 } from './h6'; export type HeadingVariants = { Hero: typeof Hero; H1: typeof H1; H2: typeof H2; H3: typeof H3; H4: typeof H4; H5: typeof H5; H6: typeof H6; }; export declare const Heading: HeadingVariants; export default Heading;