import type { AnyFn } from "./types.js"; export declare class TimeoutFn { #private; constructor(cb: T, interval: number); stop(): void; start(...args: Parameters | []): void; }