import { PostsApiClient } from '../api/posts.js'; export declare function handlePrompts(promptId: string, args: Record, client: { posts: PostsApiClient; }): Promise<{ messages: { role: string; content: { type: string; text: string; }; }[]; }>;