import { default as React } from 'react';
import { TextInputProps } from '../TextInput/TextInput';
export type AllProps = TextInputProps & {
    mask: string;
    charset?: string;
};
export declare const TextInputMask: ({ id, className, mask, value: externalValue, defaultValue, charset, onChange, ...inputProps }: AllProps) => React.ReactElement;
export default TextInputMask;
