interface DebounceOptions {
    defaultDelay?: number;
    maxDelay?: number;
    latencyIncrement?: number;
}
declare const SimpleLazyDebounce: (callback: (..._args: unknown[]) => void, options?: DebounceOptions) => (...args: unknown[]) => void;

export { SimpleLazyDebounce };
