export declare function useInputMask(mask: string, options?: {
    placeholderChar?: string;
    autofix?: boolean;
}): {
    maskedValue: string;
    rawValue: string;
    onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
    onBlur: () => void;
    setValue: (value: string) => void;
    inputRef: React.RefObject<HTMLInputElement | null>;
};
