import { FieldType } from '../types/Collection'; /** * when create collection, field must contain 2 Fields. * Type is int64 or varchar and primary_key = true * Type is one of float_vector and binary_vector * Will check fields * @param fields */ export declare const checkCollectionFields: (fields: FieldType[]) => boolean;