export type MemoryCandidateType = 'template_preference' | 'field_mapping' | 'style_rule' | 'delivery_rule' | 'negative_example'; export interface MemoryCandidate { type: MemoryCandidateType; signal: string; confidence: number; } export declare function extractMemoryCandidatesFromFeedback(text: string): MemoryCandidate[]; //# sourceMappingURL=feedback-memory.d.ts.map