import type { Options } from 'code-block-writer'; import type { PuristaConfig } from '../../loadPuristaConfig.js'; /** * Generate an attached-agent queue builder file. * * The generated agent defines payload, parameter, and output schemas, registers * a `primary` model, attaches a harness agent, configures an ephemeral session, * and exposes the agent as an HTTP endpoint. */ export declare const getAgentBuilderFileContent: (input: { agentName: string; agentDescription: string; serviceName: string; serviceVersion: string; responseEventName?: string; puristaConfig: PuristaConfig; codeWriterOptions?: Partial; }) => string; //# sourceMappingURL=getAgentBuilderFileContent.d.ts.map