interface Prompt {
    name: string;
    description?: string;
    arguments?: Array<{
        name: string;
        description?: string;
        required?: boolean;
    }>;
}
interface TextContent {
    type: "text";
    text: string;
}
interface PromptMessage {
    role: "user" | "assistant";
    content: TextContent;
}
interface GetPromptResult {
    messages: PromptMessage[];
}
declare const promptList: Prompt[];
export declare function handleGetPrompt(name: string, args?: {
    [key: string]: string;
}): GetPromptResult;
export { promptList };
