import type { IntrospectionConfiguration } from '../../config/types'; import type { Task } from '../runner'; import type { ResolvedMagidocTemplateConfig } from './resolveTemplateConfig'; type Config = { introspection: IntrospectionConfiguration; }; type Ctx = { templateConfiguration: ResolvedMagidocTemplateConfig; }; export declare function loadGraphQLSchemaTask(config: Config): Task; export {};