export interface PromptArgument { name: string; description: string; required: boolean; } export interface PromptDefinition { name: string; description: string; arguments: PromptArgument[]; } export interface Prompts { [key: string]: PromptDefinition; } export declare const prompts: Prompts;