import { TextFieldProps } from "@mui/material"; import React from "react"; export type InputMaskProps = { value?: string; mask?: string; replacement?: Record; onChange?: (data: string) => void; } & Omit; export declare const InputMask: React.ForwardRefExoticComponent<{ value?: string; mask?: string; replacement?: Record; onChange?: (data: string) => void; } & Omit & React.RefAttributes>;