export declare function registerPrompt(id: string, template: string): void; /** * Resolve a prompt template by ID, substituting {{variable}} placeholders. * Missing variables are replaced with an empty string. */ export declare function resolvePrompt(id: string, variables?: Record): string; export declare function hasPrompt(id: string): boolean;