/** * Copyright (c) 2024 Khaled Sameer . * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. **/ import { Signal, SignalOptions } from '../core'; /** * Create a signal that throttles updates */ export declare function throttled(source: Signal, interval: number, options?: SignalOptions): Signal; //# sourceMappingURL=throttled.d.ts.map