import type { SchemaFetcherOptions, ServicesFetcherOptions } from './types.cjs';
export declare function createSchemaFetcher(options: SchemaFetcherOptions): () => Promise<{
    sdl: string;
    url: string | null;
    name: string;
    id: Promise<string>;
}>;
export declare function createServicesFetcher(options: ServicesFetcherOptions): () => Promise<{
    sdl: string;
    url: string | null;
    name: string;
    id: string;
}[]>;
//# sourceMappingURL=gateways.d.ts.map