import { TypographyProps } from '@mui/material'; export type FlexibleString = React.JSX.Element | string; export type FlexibleTypographyProps = { text: FlexibleString; defaultVariant: TypographyProps["variant"]; typographyProps?: Omit; }; export declare const FlexibleTypography: (props: FlexibleTypographyProps) => React.JSX.Element;