import type { DebounceOptions, ThrottleOptions } from './debounce.js';
export declare function _Debounce(wait: number, opt?: DebounceOptions): MethodDecorator;
export declare function _Throttle(wait: number, opt?: ThrottleOptions): MethodDecorator;
