export declare const DataType: { readonly FLOAT32: "float32"; }; export type DataType = (typeof DataType)[keyof typeof DataType]; export declare const DistanceMetric: { readonly COSINE: "cosine"; readonly EUCLIDEAN: "euclidean"; }; export type DistanceMetric = (typeof DistanceMetric)[keyof typeof DistanceMetric]; export declare const SseType: { readonly AES256: "AES256"; readonly AWS_KMS: "aws:kms"; }; export type SseType = (typeof SseType)[keyof typeof SseType];