import { BaseApiClient } from "./base-client"; export type { ApiClientConfig, ApiResponse, QueryParams } from "./base-client"; /** * Browser-specific API client with CORS mode and Sentry error reporting. */ export declare class ApiClient extends BaseApiClient { constructor(baseUrl: string, apiKey: string, onConnectionChange?: (isConnected: boolean) => void); protected setConnectionStatus(isConnected: boolean): void; protected getRequestOptions(): RequestInit; protected getLocale(): string | undefined; protected handleConnectionError(error: unknown, endpoint: string, method: string): void; }