/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as serializers from "../index";
import * as Zep from "../../api/index";
import * as core from "../../core";
export declare const DocumentCollectionResponse: core.serialization.ObjectSchema<serializers.DocumentCollectionResponse.Raw, Zep.DocumentCollectionResponse>;
export declare namespace DocumentCollectionResponse {
    interface Raw {
        created_at?: string | null;
        description?: string | null;
        document_count?: number | null;
        document_embedded_count?: number | null;
        embedding_dimensions?: number | null;
        embedding_model_name?: string | null;
        is_auto_embedded?: boolean | null;
        is_indexed?: boolean | null;
        is_normalized?: boolean | null;
        metadata?: Record<string, unknown> | null;
        name?: string | null;
        updated_at?: string | null;
        uuid?: string | null;
    }
}
