import React from 'react';
import Imask from 'imask';
interface CustomProps {
    onChange: (event: {
        target: {
            name: string;
            value: string;
        };
    }) => void;
    name: string;
    mask: Imask.AnyMaskedOptions['mask'];
}
export declare const TextMaskCustom: React.ForwardRefExoticComponent<CustomProps & React.RefAttributes<any>>;
export {};
