import { Type } from '@nestjs/common'; import { GraphQLScalarType, GraphQLType } from 'graphql'; import { DateScalarMode, GqlTypeReference, ScalarsTypeMap } from '../../interfaces'; import { TypeOptions } from '../../interfaces/type-options.interface'; export declare class TypeMapperSevice { mapToScalarType>(typeRef: T, scalarsMap?: ScalarsTypeMap[], dateScalarMode?: DateScalarMode): GraphQLScalarType | undefined; mapToGqlType(hostType: string, typeRef: T, options: TypeOptions, isInputTypeCtx: boolean): T; private validateTypeOptions; private mapToGqlList; private hasArrayOptions; }