import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AgentDefinitionSource } from "./AgentDefinitionSource"; export declare const AgentMetadataDbModel: core.serialization.ObjectSchema; export declare namespace AgentMetadataDbModel { interface Raw { created_at_unix_secs: number; updated_at_unix_secs: number; created_from?: AgentDefinitionSource.Raw | null; last_updated_from?: AgentDefinitionSource.Raw | null; } }