import { SessionManager } from '../session/manager.js'; import { type ToolResponse } from './types.js'; type SaveFormat = 'clean' | 'tracked' | 'both'; export declare function save(manager: SessionManager, params: { file_path?: string; save_to_local_path: string; clean_bookmarks?: boolean; save_format?: SaveFormat; track_changes?: boolean; author?: string; allow_overwrite?: boolean; allow_discard_preserved_revisions?: boolean; tracked_save_to_local_path?: string; tracked_changes_author?: string; tracked_changes_engine?: 'auto' | 'atomizer'; fail_on_rebuild_fallback?: boolean; }): Promise; export {}; //# sourceMappingURL=save.d.ts.map