import type { DocumentNode } from 'graphql'; import type { TypedDocumentNode } from '@apollo/client/core'; import type { Observable } from 'rxjs'; import { Apollo } from './apollo'; import { SubscriptionOptionsAlone, ExtraSubscriptionOptions, SubscriptionResult, EmptyObject } from './types'; import * as i0 from "@angular/core"; export declare class Subscription { protected apollo: Apollo; readonly document: DocumentNode | TypedDocumentNode; client: string; constructor(apollo: Apollo); subscribe(variables?: V, options?: SubscriptionOptionsAlone, extra?: ExtraSubscriptionOptions): Observable>; static ɵfac: i0.ɵɵFactoryDeclaration, never>; static ɵprov: i0.ɵɵInjectableDeclaration>; }