import type { ClientOptions } from './_create-client'; import type { GraphqlOperation } from './_generate-graphql-operation'; export interface Fetcher { (gql: GraphqlOperation): Promise; } export type BatchOptions = { batchInterval?: number; maxBatchSize?: number; }; export declare const createFetcher: ({ url, headers, fetcher, fetch: _fetch, batch, ...rest }: ClientOptions) => Fetcher; //# sourceMappingURL=_fetcher.d.ts.map