/** Declared type of a database metadata schema field. ARRAY appears in this enum because schemas persisted before it was rejected still read back and rebuild, but it CANNOT be declared on a new or evolved field: both the create and the update-metadata-schema endpoints answer 400 for it. For a field holding several values, declare VARCHAR and store the values comma-joined, then filter one member with the contains operator. */ export declare const TenantsMilvusDataType: { readonly Bool: "BOOL"; readonly Int8: "INT8"; readonly Int16: "INT16"; readonly Int32: "INT32"; readonly Int64: "INT64"; readonly Float: "FLOAT"; readonly Double: "DOUBLE"; readonly Varchar: "VARCHAR"; readonly Json: "JSON"; readonly Array: "ARRAY"; }; export type TenantsMilvusDataType = (typeof TenantsMilvusDataType)[keyof typeof TenantsMilvusDataType];