export interface ImportOptions { profile: string; all: boolean; sanitize: boolean; nativeClaudeDir?: string; cwd?: string; } export declare function runImportHistory(opts: ImportOptions): Promise; type JsonValue = null | boolean | number | string | JsonValue[] | { [key: string]: JsonValue; }; type JsonObject = { [key: string]: JsonValue; }; type JsonRow = JsonObject; export declare function sanitizeTranscriptRows(rows: JsonRow[]): { rows: JsonRow[]; changed: boolean; }; export {}; //# sourceMappingURL=importHistory.d.ts.map