import type { MeshHandler, MeshHandlerOptions, MeshSource, YamlConfig } from '@graphql-mesh/types';
export default class MySQLHandler implements MeshHandler {
    private name;
    private config;
    private baseDir;
    private pubsub;
    private importFn;
    private schemaProxy;
    constructor({ name, config, baseDir, pubsub, store, importFn, }: MeshHandlerOptions<YamlConfig.MySQLHandler>);
    getMeshSource(): Promise<MeshSource>;
}
