/** * A decorator that runs a function once after a given "cooldown" period. * @param {number} timeout The timeout, in milliseconds, after which the function is invoked. * @returns {MethodDecorator} The decorator that runs a function once after a given "cooldown" period. */ export declare function debounce(timeout: number): MethodDecorator; //# sourceMappingURL=debounce.d.ts.map