import type { ExecuteMeshFn, SubscribeMeshFn } from '@graphql-mesh/runtime';
import type { Exchange } from '@urql/core';
export interface MeshExchangeOptions {
    execute: ExecuteMeshFn;
    subscribe?: SubscribeMeshFn;
}
/** Exchange for executing queries locally on a schema using graphql-js. */
export declare const meshExchange: (options: MeshExchangeOptions) => Exchange;
