/// import type { GraphQLResourcePrinter } from '../../../interfaces'; import type { ModelInfo } from '../../../main'; import type { GraphQLResource } from '../../../intermediate/resource'; import path from 'path'; export declare class GraphQLResourceSourcePrinter implements GraphQLResourcePrinter { generate(modelInfo: ModelInfo, resource: GraphQLResource, compilerBaseOutputDir: path.ParsedPath): { [path: string]: string; }; private generateRelativeOutputPath; }