import { ParserField } from '../../Models'; export declare class TemplateUtils { static isArray: (f: ParserField, type: string) => string; static isRequired: (f: ParserField, type: string) => string; static isArrayRequired: (f: ParserField, type: string) => string; static resolveType: (f: ParserField) => string; static descriptionResolver: (description?: string | undefined, prefix?: number) => string; static resolveImplements: (interfaces?: string[] | undefined) => string; static resolveDirectives: (directives?: ParserField[] | undefined) => string; static resolverForConnection: (f: ParserField, prefix?: number) => string; }