import { Processing } from "../Processings/Processing"; export declare class Debouncing extends Processing void, time: number]> { _doFunc?: (...args: T) => void; constructor(); do(...args: T): void; } export declare class DebouncingWithStartValues extends Processing { _doFunc?: (...args: T) => void; constructor(func: (...args: T) => void, time: number); do(...args: T): void; }