import { ProviderInterface } from '../types'; import './polyfill'; declare type WSProviderInterface = ProviderInterface & { connect(): void; }; export default function wsProvider(endpoint: string, autoConnect?: boolean): WSProviderInterface; export {};