/** * Turn `--snippet ` flags into contract-shaped snippet attachments * (shared by `engineer report` and `engineer ask`). Caps mirror * snippetSchema: 8k content, 500-char path, 40-char language. */ export interface SnippetAttachment { language: string; content: string; path: string; } export declare function readSnippetFiles(paths: string[]): SnippetAttachment[]; //# sourceMappingURL=attachments.d.ts.map