import { type AgentBlueprint, type DetailLevel } from './types.js'; export declare function generateRfcMarkdown(blueprint: AgentBlueprint, artifacts: { prompt?: string; flow?: object; }, detailLevel?: DetailLevel): string; export declare function generateToolSpecifications(recommendations: { toolName: string; description: string; whenToUse: string; onError?: string; }[]): Array<{ name: string; description: string; inputSchema: Record; outputSchema: Record; integrationSteps: string[]; }>;