import type { MeshInstance } from '@graphql-mesh/runtime'; import type { YamlConfig } from '@graphql-mesh/types'; export { resolvePlaygroundConfig } from './playground.js'; export type MeshHTTPHandler = ReturnType; export declare function createMeshHTTPHandler({ baseDir, getBuiltMesh, rawServeConfig, playgroundTitle, renderGraphiQL }: { baseDir: string; getBuiltMesh: () => Promise; rawServeConfig?: YamlConfig.Config['serve']; playgroundTitle?: string; renderGraphiQL?: (options?: any) => string | Promise; }): import("@whatwg-node/server").ServerAdapter>>;