export interface PRDSection { title: string; content: string; } export interface PRD { title: string; sections: PRDSection[]; }