/** * KERNL V2.0 - Chrome-Based Export Tools * * Simpler, faster export using Chrome DevTools Protocol * No cookies needed - uses active Chrome session */ import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { ProjectDatabase } from '../storage/database.js'; import type { ToolResult } from '../types/index.js'; export declare const chromeExportTools: Tool[]; export declare function createChromeExportHandlers(_db: ProjectDatabase): { chrome_export_conversations: (input: { exportType?: "summary" | "full" | "dual"; outputDir?: string; chromeDebugPort?: number; }) => Promise>; chrome_export_status: (input: { chromeDebugPort?: number; }) => Promise>; chrome_export_setup: () => Promise>; }; //# sourceMappingURL=chrome-export.d.ts.map