import type { ApolloClient, ErrorPolicy, MaybeMasked, ObservableQuery, OperationVariables } from "@apollo/client"; export type RefetchFunction = (variables?: Partial) => Promise, TErrorPolicy>>; export type FetchMoreFunction = (fetchMoreOptions: ObservableQuery.FetchMoreOptions & { /** * Specifies how the query handles a response that returns both GraphQL errors and partial results. * * For details, see [GraphQL error policies](https://www.apollographql.com/docs/react/data/error-handling/#graphql-error-policies). * * The default value is `none`, meaning that the query result includes error details but not partial results. * * @docGroup 1. Operation options */ errorPolicy?: TErrorPolicy; }) => Promise, TErrorPolicy>>; //# sourceMappingURL=types.d.cts.map