export interface PrdSummary { readonly slug: string; readonly path: string; readonly frontmatter: Readonly>; readonly title: string; readonly status: string; readonly branch: string; readonly source: string | null; readonly goal: string; readonly decisions: readonly string[]; readonly statusLog: readonly string[]; } export declare function readPrd(workspaceRoot: string, slug: string): Promise; export declare function listPrds(workspaceRoot: string): Promise; //# sourceMappingURL=prd-reader.d.ts.map