import { Dayjs } from 'dayjs';
type RangeValue = {
    begin: string | null;
    end: string | null;
};
type Callback = (value: RangeValue) => void;
type Config = {
    format: string;
    max: Dayjs | null;
    min: Dayjs | null;
};
export declare const useHandleInputCompleteHook: (callback: Callback, config: Config) => (value: string) => void;
export {};
