import { type InputMaskProps } from '../../interaction'; import { type FormFieldProps } from '../Form/types'; export interface FormInputMaskProps extends Omit, FormFieldProps { } export declare function FormInputMask({ inputRef, onchange, disabled, validation, ...props }: FormInputMaskProps): any;