import { type PluginFunction, type Types } from '@graphql-codegen/plugin-helpers'; import { type TypeNode } from 'graphql'; type SchemaMapItem = { isArray: boolean; isScalar: boolean; isNullable: boolean; type: string; }; export declare const typeNodeToString: (type: TypeNode, isNullable?: boolean) => SchemaMapItem; export declare const plugin: PluginFunction, Types.ComplexPluginOutput>; export {};