/// import { type InputProps } from './helpers/input/types'; export interface MaskProps extends InputProps { mask?: string; } export declare const InputMask: { ({ measure, ...props }: MaskProps & { measure?: string | undefined; }): JSX.Element; displayName: string; };