import { ProviderProps } from "./provider/types"; import { Context } from "./types"; declare function isConnectionConnecting(connection: WebSocket | null): boolean | null; declare function createConnection(context: Context, { url, onOpen, onClose, onErrorRef, logger, headers, }: Pick & { onErrorRef: any; }): WebSocket; declare function getMessageEvent(context: Context): string; export { isConnectionConnecting, createConnection, getMessageEvent }; //# sourceMappingURL=utils.d.ts.map