import { TypographyProps } from '@mui/material';
export interface TextPropsModel {
    text: string;
    label?: string;
    typographyProps?: TypographyProps;
    showBorder?: boolean;
    showBoxShadow?: boolean;
    colorLabel?: string;
    borderColor?: string;
    backgroundColor?: boolean;
    labelRight?: boolean;
    showDivider?: boolean;
}
