import type { BaseClientOptions } from "../../../../BaseClient.js"; import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.js"; import { ChatClient } from "../resources/chat/client/Client.js"; import { ChatGroupsClient } from "../resources/chatGroups/client/Client.js"; import { ChatsClient } from "../resources/chats/client/Client.js"; import { ConfigsClient } from "../resources/configs/client/Client.js"; import { ControlPlaneClient } from "../resources/controlPlane/client/Client.js"; import { PromptsClient } from "../resources/prompts/client/Client.js"; import { ToolsClient } from "../resources/tools/client/Client.js"; export declare namespace EmpathicVoiceClient { type Options = BaseClientOptions; } export declare class EmpathicVoiceClient { protected readonly _options: NormalizedClientOptionsWithAuth; protected _controlPlane: ControlPlaneClient | undefined; protected _chatGroups: ChatGroupsClient | undefined; protected _chats: ChatsClient | undefined; protected _configs: ConfigsClient | undefined; protected _prompts: PromptsClient | undefined; protected _tools: ToolsClient | undefined; protected _chat: ChatClient | undefined; constructor(options?: EmpathicVoiceClient.Options); get controlPlane(): ControlPlaneClient; get chatGroups(): ChatGroupsClient; get chats(): ChatsClient; get configs(): ConfigsClient; get prompts(): PromptsClient; get tools(): ToolsClient; get chat(): ChatClient; }