import { EventSourcePolyfill } from 'event-source-polyfill'; import { type Endpoints, type Stage } from './endpoints.const'; export interface C3ClustersProps { stage?: Stage; endpoints?: Endpoints; userToken: string; } export declare class ClustersService { static clustersStream(options: C3ClustersProps): EventSourcePolyfill; }