import { TextFieldProps } from '@mui/material';
export interface TextFieldPropsModel {
    textFieldProps?: TextFieldProps;
    label: string;
    id: string;
    colorLabel?: string;
    borderColor?: string;
    backgroundColor?: string;
    labelRight?: boolean;
    textLabelRight?: string;
    toLink?: () => void;
}
