export interface UseInputMaskProps { type?: 'text' | 'number'; locale?: string; options?: Record; } export declare const useInputMask: (props?: UseInputMaskProps) => { inputRef: import("react").RefCallback; parseMaskedValue: (maskedValue: string) => number; maskValue: (value: string, options?: any) => string; };