import { Dayjs } from 'dayjs';
import { type DateAccuracy } from '../../../dayjs-utils';
type Callback = (value: string | null) => void;
type Config = {
    format: string;
    max: Dayjs | null;
    min: Dayjs | null;
    dateAccuracy: DateAccuracy;
};
export declare const useHandleInputCompleteHook: (callback: Callback, config: Config) => (value: string) => void;
export {};
