type NotFunction = T extends Function ? never : T; /** @see https://foxact.skk.moe/use-debounced-value */ declare function useDebouncedValue(value: NotFunction, wait: number, leading?: boolean): NotFunction; export { useDebouncedValue };