import { TBaseCallback } from '../types';
export default function useThrottledCallback<F extends TBaseCallback>(fn: F, delay?: number): F;
