import { DataType } from "@zilliz/milvus2-sdk-node"; declare class FieldSchemaDto { name: string; dataType: DataType; isPrimaryKey?: boolean; maxLength?: string; dim?: number; } export declare class CreateCollectionDto { milvusAddress: string; collectionName: string; fields: FieldSchemaDto[]; description?: string; } export declare class CollectionNameDto { milvusAddress: string; collectionName: string; } export interface MilvusConfig { address: string; timeout?: number; } export {};