import { IConvMessage, IPromptConfig } from './FeedoxAI'; export declare class WorkerClient { options?: Partial; constructor(options?: Partial); streamPrompt(workspaceId: string, promptId: string, variables: any, messages: IConvMessage[], config?: IPromptConfig): Promise; runPrompt(workspaceId: string, promptId: string, variables: any, messages: IConvMessage[], config?: IPromptConfig): Promise; private getAuthHeaders; } export declare class WorkerClientOptions { baseUrl: string; defaultProvider: string; defaultModel: string; askApiKey: string; openaiApiKey: string; claudeApiKey: string; groqApiKey: string; googleApiKey: string; mistralApiKey: string; openrouterApiKey: string; cohereApiKey: string; xaiApiKey: string; deepseekApiKey: string; ai21ApiKey: string; cloudflareApiKey: string; cloudflareAccountId: string; }