/** * Console Logs Handler * * Handles saving console logs to the file system. */ export interface ConsoleLogsSaveResult { consoleLogsPath: string; } /** * Handle console logs save: saves the logs as markdown to the screenshots folder */ export declare function handleSaveConsoleLogs(data: { logs: unknown[]; markdown: string; url: string; title: string; timestamp: number; }): Promise; //# sourceMappingURL=consoleLogs.d.ts.map