import { GraphQLScalarType, GraphQLType } from "graphql"; import { TypeOptions } from "../decorators/types"; export declare function convertTypeIfScalar(type: any): GraphQLScalarType | undefined; export declare function wrapWithTypeOptions(typeOwnerName: string, type: T, typeOptions: TypeOptions, nullableByDefault: boolean): T; export declare function convertToType(Target: any, data?: object): object | undefined; export declare function getEnumValuesMap(enumObject: T): any;