import React from 'react'; interface Props { id: string; name: string; mask: string; label?: string | JSX.Element; edit?: boolean; isFlex?: boolean; hasBar?: boolean; inputBg?: string; noMargin?: boolean; hasBorder?: boolean; placeholder?: string; borderWithBar?: boolean; inputBoxShadow?: string; fontSizeFamilyLabel?: string; fontSizeFamilyInput?: string; } export interface IInputProps { configs: Props; onChangeInput?: React.Dispatch; } type InputProps = JSX.IntrinsicElements['input'] & IInputProps; export declare function InputMask({ onChangeInput, configs, readOnly }: InputProps): React.JSX.Element; export {};