/**
 * 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 DocumentResponse: core.serialization.ObjectSchema<serializers.DocumentResponse.Raw, Zep.DocumentResponse>;
export declare namespace DocumentResponse {
    interface Raw {
        content?: string | null;
        created_at?: string | null;
        document_id?: string | null;
        embedding?: number[] | null;
        is_embedded?: boolean | null;
        metadata?: Record<string, unknown> | null;
        updated_at?: string | null;
        uuid?: string | null;
    }
}
