export interface MemoryPin {
    id: string;
    content: string;
    location: {
        file: string;
        line: number;
        column: number;
    };
    timestamp: string;
    status: 'active' | 'inactive' | 'deleted';
}
export interface Snapshot {
    id: string;
    tag: string;
    timestamp: string;
    size: number;
    pins: string[];
}
export interface OptimizationConfig {
    disableLivePreview: boolean;
    maxParallelTasks: number;
    batchCompletions: boolean;
    optimizeMemory: boolean;
}
