import { V as V1ApiNamespace } from './errors-DwEt8WYf.mjs'; export { A as AuthenticationError, D as DeveloperApiClient, a as DeveloperApiError, N as NotFoundError, S as ServerError, b as ValidationError } from './errors-DwEt8WYf.mjs'; import { CliApiNamespace } from './cli/index.mjs'; export { CliApiClient } from './cli/index.mjs'; interface SDKConfig { realtimex?: { url?: string; appId?: string; apiKey?: string; }; } /** * RealtimeX SDK * * Milestone 1 SDK surface: generated Developer API v1 modules for workspace, * thread, and chat. */ declare class RealtimeXSDK { readonly appId: string; readonly apiKey: string | undefined; readonly realtimexUrl: string; readonly v1: V1ApiNamespace; readonly cli: CliApiNamespace; private static DEFAULT_REALTIMEX_URL; constructor(config?: SDKConfig); private getEnvVar; } export { CliApiNamespace, RealtimeXSDK, type SDKConfig, V1ApiNamespace };