import { default as React } from 'react'; import { Typography } from './Typography'; type TypographyProps = React.ComponentProps; /** * A heading component. */ export declare const Heading: React.FC & { size?: Exclude; }>; type HeadingProps = Omit, "as" | "weight" | "size">; /** * A Heading level-1 styled component. Underlying HTML element can be changed * usign the `as` property. */ export declare const H1: React.FC; /** * A Heading level-2 styled component. Underlying HTML element can be changed * usign the `as` property. */ export declare const H2: React.FC; /** * A Heading level-3 styled component. Underlying HTML element can be changed * usign the `as` property. */ export declare const H3: React.FC; /** * A Heading level-4 styled component. Underlying HTML element can be changed * usign the `as` property. */ export declare const H4: React.FC; /** * A Heading level-5 styled component. Underlying HTML element can be changed * usign the `as` property. */ export declare const H5: React.FC; /** * A Heading level-6 styled component. Underlying HTML element can be changed * usign the `as` property. */ export declare const H6: React.FC; export {}; //# sourceMappingURL=Heading.d.ts.map