import { FieldType, IType } from "../interfaces"; export declare class TypeUtil { /** * Find the correct field type based on JsonSchema spec. * * @param type Function type * @return string value of field type */ static getFieldType(type?: IType): FieldType; }