import type { ApolloClient, ObservableQuery, NormalizedCacheObject, ApolloQueryResult, WatchQueryOptions } from '@apollo/client'; export declare function makeWatchQuery({ client, queryFn, options, ssr, }: { client: ApolloClient; options: WatchQueryOptions; queryFn: (client: ApolloClient, variables: TVariables) => Promise>; ssr?: boolean; }): ObservableQuery;