export declare class TardisMachine { private readonly options; private readonly _httpServer; private readonly _wsServer; private _eventLoopTimerId; constructor(options: Options); start(port: number): Promise; stop(): Promise; } type Options = { apiKey?: string; cacheDir: string; clearCache?: boolean; }; export {}; //# sourceMappingURL=tardismachine.d.ts.map