import { PlatformClient } from '@livechat/platform-client'; import { Store } from './types'; import { Push, PushResponse, Request, Response, ResponseError } from './types/frames'; type Incoming = Push | PushResponse | Response | ResponseError; type ParametrizedPlatformClient = PlatformClient; export type SocketClient = ParametrizedPlatformClient & { reinitialize(): void; }; declare const createSocketClient: (store: Store) => SocketClient; export default createSocketClient; //# sourceMappingURL=socketClient.d.ts.map