import type { SQLiteStore } from '@cortex/graph'; export interface AddProjectInput { name: string; path: string; privacyLevel?: 'standard' | 'sensitive' | 'restricted'; } export interface AddProjectResult { success: boolean; project?: { id: string; name: string; rootPath: string; privacyLevel: string; }; error?: string; } export declare function handleAddProject(input: AddProjectInput, store: SQLiteStore): Promise; export interface RemoveProjectInput { name: string; } export interface RemoveProjectResult { success: boolean; removed?: string; note?: string; error?: string; } export declare function handleRemoveProject(input: RemoveProjectInput): Promise; //# sourceMappingURL=manage.d.ts.map