export { debounce, throttle } from 'lodash-es'; type Fn = (...args: any[]) => any; export declare function apply(fn: T, ctx: ThisParameterType, args?: Parameters): ReturnType; export declare function call(fn: T, ctx: ThisParameterType, ...args: Parameters): ReturnType;