import type { RuntimeSkillRegistry } from './types'; export interface RenderSkillCatalogOptions { includeProtocol?: boolean; } export declare function renderSkillCatalogPrompt(registry: RuntimeSkillRegistry, options?: RenderSkillCatalogOptions): string; export declare function appendSkillCatalogToInstructions(instructions: string, registry: RuntimeSkillRegistry, options?: RenderSkillCatalogOptions): string;