import type { ComponentType } from 'react'; import type { TypographyProps, BoxProps } from '@mui/material'; interface TypographyBorderProps { autoWidth?: boolean; border?: boolean | string; noWrap?: boolean; rows?: number; width?: string | number; [key: string]: any; } type TypographyBorderPropsType = Omit & TypographyBorderProps; export declare const Border: ComponentType; interface TypographyStyledProps { bgColor?: string; bold?: boolean | string; charsCase?: string; customColor?: string; fontSize?: number | string; italic?: boolean; lineHeight?: string | number; monospace?: boolean; myClassName?: string | string[]; strike?: boolean; sub?: boolean; sup?: boolean; underline?: boolean; [key: string]: any; } type TypographyStyledPropsType = Omit & TypographyStyledProps; export declare const Typography: ComponentType; export {}; //# sourceMappingURL=Typography.styled.d.ts.map