/** * Copyright (c) TonTech. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import type { DebounceOptions } from '@ton/appkit'; import type { DebouncedState } from './use-debounce-callback'; interface UseDebounceValueOptions extends DebounceOptions { equalityFn?: (left: T, right: T) => boolean; } export declare const useDebounceValue: (initialValue: T | (() => T), delay: number, options?: UseDebounceValueOptions) => [T, DebouncedState<(value: T) => void>]; export {}; //# sourceMappingURL=use-debounce-value.d.ts.map