declare const typography: { lineHeights: { xs: number; sm: number; md: number; lg: number; xl: number; xxl: number; }; fontConfig: {}; fontWeights: { normal: string; semibold: string; bold: string; }; fonts: {}; fontSizes: { '2xs': number; xs: number; sm: number; md: number; lg: number; xl: number; '2xl': number; '3xl': number; '4xl': number; '5xl': number; '6xl': number; '7xl': number; '8xl': number; '9xl': number; }; textAligments: { left: string; center: string; right: string; justify: string; }; headingSizes: { '2xs': number; xs: number; sm: number; md: number; lg: number; xl: number; }; }; export declare type ITypography = typeof typography; export declare type IFontSize = keyof typeof typography.fontSizes; export declare type ILineHeight = keyof typeof typography.lineHeights; export declare type IFontWeight = keyof typeof typography.fontWeights; export declare type ITextAligments = keyof typeof typography.textAligments; export declare type IHeadingSizes = keyof typeof typography.headingSizes; export default typography; //# sourceMappingURL=typography.d.ts.map