/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../../../index"; import * as Flatfile from "../../../../api/index"; import * as core from "../../../../core"; import { AgentId } from "../../commons/types/AgentId"; import { AccountId } from "../../commons/types/AccountId"; import { EnvironmentId } from "../../commons/types/EnvironmentId"; import { AgentConfig } from "./AgentConfig"; export declare const Agent: core.serialization.ObjectSchema; export declare namespace Agent { interface Raw extends AgentConfig.Raw { id: AgentId.Raw; createdAt: string; updatedAt: string; accountId: AccountId.Raw; environmentId: EnvironmentId.Raw; createdFrom?: AgentId.Raw | null; lastPropagatedAt?: string | null; } }