import type { DocumentNode } from 'graphql'; import type { Observable } from 'rxjs'; import type { ApolloQueryResult, OperationVariables, TypedDocumentNode } from '@apollo/client/core'; import { Apollo } from './apollo'; import { QueryRef } from './query-ref'; import { EmptyObject, QueryOptionsAlone, WatchQueryOptionsAlone } from './types'; import * as i0 from "@angular/core"; export declare abstract class Query { protected apollo: Apollo; abstract readonly document: DocumentNode | TypedDocumentNode; client: string; constructor(apollo: Apollo); watch(variables?: V, options?: WatchQueryOptionsAlone): QueryRef; fetch(variables?: V, options?: QueryOptionsAlone): Observable>; static ɵfac: i0.ɵɵFactoryDeclaration, never>; static ɵprov: i0.ɵɵInjectableDeclaration>; }