import type { HeaderInput } from '../shared/header.js'; import type { ErrorOr, MachineConfiguration } from '../shared/types.js'; import type { IntrospectionServiceResponse } from './helpers.js'; import type { CommonImportOptions } from './import-command.js'; export type GraphQL2SdlOptions = CommonImportOptions & { endpoint: string; typePrefix?: string; includeRootOperations?: boolean; headers: readonly HeaderInput[]; secrets?: string[]; }; export declare const graphql2sdl: ({ endpoint, typePrefix, includeRootOperations, headers, secrets, }: GraphQL2SdlOptions, configuration: MachineConfiguration) => Promise>; //# sourceMappingURL=graphql2sdl.d.ts.map