import { default as React, CSSProperties } from 'react'; import { TYPE, TYPOGRAPHY_VARIANT, STATE } from '../../constants'; type HeadingLevel = 1 | 2 | 3 | 4 | 5; export interface TypographyProps { children: React.ReactNode; variant?: keyof typeof TYPOGRAPHY_VARIANT; themeType?: keyof typeof TYPE; state?: keyof typeof STATE; color?: string; level?: HeadingLevel; isText?: boolean; isFullWidth?: boolean; style?: CSSProperties; isDisabled?: boolean; fontWeight?: number; fontSize?: string; lineHeight?: string; } declare const Typography: ({ children, themeType, variant, state, color, isText, isFullWidth, style, fontSize, fontWeight, lineHeight, isDisabled, ...rest }: TypographyProps) => import("react/jsx-runtime").JSX.Element; export default Typography;