export declare enum FieldTypeBasePlatform { /** * common */ COMMON = "COMMON", /** * GraphQL */ GRAPHQL = "GRAPHQL", /** * JSON */ JSON = "JSON", /** * JSON Schema */ JSON_SCHEMA = "JSON_SCHEMA", /** * Formily JSON Schema */ FORMILY_JSON_SCHEMA = "FORMILY_JSON_SCHEMA", /** * mongoose */ MONGOOSE = "MONGOOSE" } export type FieldTypePlatform = FieldTypeBasePlatform | string; export type FieldType = any; export type PlatformToTypeMap = Record; export interface FieldTypeInfo { platformToTypeMap: PlatformToTypeMap; } //# sourceMappingURL=field-type-info.d.ts.map