/// import { MaskType } from '../../helpers/masks'; interface Props { name: string; label?: string; placeholder?: string; mask: MaskType; } declare type MaskInputProps = JSX.IntrinsicElements['input'] & Props; export declare function MaskInput({ name, label, disabled, mask, onBlur, onFocus, onChange, ...rest }: MaskInputProps): JSX.Element; export {};