import { TextFieldProps } from '@mui/material';
import { FC } from 'react';
import Imask from 'imask';
declare type CustomProps = TextFieldProps & {
mask?: Imask.AnyMaskedOptions['mask'];
};
export declare const TextField: FC<CustomProps>;
export {};