/**
 * Memory Structure Schemas v13 - PRODUCTION-READY Autonomous AI Brain Architecture
 * Following Cline's philosophy with EXTREME behavioral programming
 */
export interface MemorySection {
    required: boolean;
    minLength?: number;
    description: string;
    example?: string;
}
export interface MemoryStructure {
    sections: Record<string, MemorySection>;
    minSections: number;
    guidance: string;
}
export declare const MEMORY_STRUCTURES: Record<string, MemoryStructure>;
//# sourceMappingURL=memoryStructures-v5.d.ts.map