UNPKG

spok-ui

Version:

UI Library for SPOK system

9 lines (8 loc) 263 B
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 {};