export class PeriodicConsolePrinter {
    /**
     *
     * @param {number} timeout in seconds
     * @param {function} builderFunction
     * @param {*} [thisArg]
     */
    constructor(timeout: number, builderFunction: Function, thisArg?: any);
    __timeout: number;
    __handle: number;
    __method: () => void;
    start(): void;
    stop(): void;
}
//# sourceMappingURL=PeriodicConsolePrinter.d.ts.map