/**
 * 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 User: core.serialization.ObjectSchema<serializers.User.Raw, Zep.User>;
export declare namespace User {
    interface Raw {
        created_at?: string | null;
        deleted_at?: string | null;
        email?: string | null;
        first_name?: string | null;
        id?: number | null;
        last_name?: string | null;
        metadata?: Record<string, unknown> | null;
        project_uuid?: string | null;
        session_count?: number | null;
        updated_at?: string | null;
        user_id?: string | null;
        uuid?: string | null;
    }
}
