import { ApiClient } from './api-client'; import { SocketError } from './error-handling'; import { SocketClient } from './socket-client'; export declare class WebClient extends ApiClient { onError: (error: SocketError) => void; socket: SocketClient; constructor(baseURL: string, onError: (error: SocketError) => void); }