import { GetMeshSourceOptions, MeshHandler, MeshSource, YamlConfig } from '@graphql-mesh/types';
export default class TuqlHandler implements MeshHandler {
    private config;
    private baseDir;
    constructor({ config, baseDir }: GetMeshSourceOptions<YamlConfig.TuqlHandler>);
    getMeshSource(): Promise<MeshSource>;
}
