/** * 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 { EventTopic } from "../../events/types/EventTopic"; import { Compiler } from "./Compiler"; import { AgentTemplateEnum } from "./AgentTemplateEnum"; import { TemplateOptions } from "./TemplateOptions"; export declare const AgentConfig: core.serialization.ObjectSchema; export declare namespace AgentConfig { interface Raw { topics?: EventTopic.Raw[] | null; compiler?: Compiler.Raw | null; source?: string | null; sourceMap?: string | null; slug?: string | null; options?: Record | null; template?: AgentTemplateEnum.Raw | null; templateOptions?: TemplateOptions.Raw | null; isSystem?: boolean | null; namespace?: string | null; packageVersions?: Record | null; commitInfo?: Record | null; } }