///
import { FormatInputValueFunction } from "react-number-format";
import * as S from "../styled-components";
export interface IIMaskInput extends S.IMainCssType {
value?: string;
onChange?: (event: React.ChangeEvent) => void;
placeholder?: string;
mask?: string | string[];
disabled?: boolean;
validation?: boolean;
label?: string;
required?: boolean;
validationMessage?: string;
dir?: "rtl" | "ltr";
onBlur?: (event: React.FocusEvent) => void;
id: string;
readOnly?: boolean;
autoFocus?: boolean;
width?: string | number;
height?: string | number;
backgroundColor?: string;
format: string | FormatInputValueFunction;
}
export declare const LabelMaskInput: React.FC;