import { ReactNode, FC } from 'react'; import { ThemeUIStyleObject, ParagraphProps } from 'theme-ui'; type variantTypes = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'psmall'; export type componentsTypes = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'span' | 'p'; export interface TypographyProps extends ParagraphProps { variant: variantTypes; component: componentsTypes; sx?: ThemeUIStyleObject; children?: ReactNode; } export declare const Typography: FC; export {}; //# sourceMappingURL=typography.d.ts.map