interface UseDebounceOptions {
    delay?: number;
    minLength?: number;
}
export declare const useDebounce: (value: string, options?: UseDebounceOptions) => string | null;
export {};
