import React from 'react'; import { TextInputProps } from 'react-admin'; interface MaskedTextInputProps extends TextInputProps { mask: string; } export declare function MaskedTextInput(props: MaskedTextInputProps): React.JSX.Element; export {};