import { ReactNode, CSSProperties } from 'react'; export type TagVariants = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'p' | 'span'; export type TypographyProps = { variant?: TagVariants; weight?: 'light' | 'normal' | 'medium' | 'semi-bold' | 'bold'; color?: string; whitespace?: 'normal' | 'nowrap' | 'pre' | 'pre-line' | 'pre-wrap'; align?: 'inherit' | 'left' | 'center' | 'right' | 'justify'; fontSize?: number; children: ReactNode; style?: CSSProperties; }; //# sourceMappingURL=type.d.ts.map