/**
 * 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 Session: core.serialization.ObjectSchema<serializers.Session.Raw, Zep.Session>;
export declare namespace Session {
    interface Raw {
        classifications?: Record<string, string> | null;
        created_at?: string | null;
        deleted_at?: string | null;
        ended_at?: string | null;
        fact_version_uuid?: string | null;
        facts?: string[] | null;
        id?: number | null;
        metadata?: Record<string, unknown> | null;
        project_uuid?: string | null;
        session_id?: string | null;
        updated_at?: string | null;
        user_id?: string | null;
        uuid?: string | null;
    }
}
