export interface ExampleEntry { name: string; content: string; } export declare function loadExamples(agentDir: string): Promise; export declare function formatExamplesForPrompt(examples: ExampleEntry[]): string;