import type { GraphQLSchema } from 'graphql';
import { type Pool } from 'mysql';
import type { DisposableExecutor } from '@graphql-mesh/transport-common';
export interface GetMySQLExecutorOpts {
    subgraph: GraphQLSchema;
    pool?: Pool;
}
export declare function getMySQLExecutor({ subgraph, pool }: GetMySQLExecutorOpts): DisposableExecutor;
