export interface ExpansionResult { /** Prompt text with file contents inlined. Image @mentions are replaced with [image: name]. */ prompt: string; filesIncluded: string[]; filesNotFound: string[]; /** Images extracted from @path.png mentions — passed as multimodal attachments. */ imageAttachments: Array<{ base64: string; mediaType: string; filePath: string; }>; } export declare function expandFileMentions(rawPrompt: string, cwd: string): ExpansionResult; //# sourceMappingURL=file-mentions.d.ts.map