import { IThrottledCallbackOptions } from '@byndyusoft-ui/use-throttled-callback';
import { InitialState } from '@byndyusoft-ui/types';
import { TUseThrottledValueReturn } from './useThrottledValue.types';
declare const useThrottledValue: <T>(value: InitialState<T>, delay: number, option?: IThrottledCallbackOptions) => TUseThrottledValueReturn<T>;
export default useThrottledValue;
