/** * Note: `leading` has higher priority rather than `trailing` * */ export declare function useThrottleCallback void>(callback: T, delay: number, options?: { leading?: boolean; trailing?: boolean; }): T;