export declare const AGENT_TEMPLATE_VERSION = 24; export interface AgentTemplateValues { repositoryId: string; workspace: string; cliCommand: 'kiokuko' | 'npm exec -- kiokuko' | 'npx --no-install kiokuko'; templateVersion?: number; } export interface RenderedAgentFile { content: string; action: 'created' | 'updated' | 'unchanged'; } export declare function renderManagedBlock(values: AgentTemplateValues): string; export declare function renderAgentFile(existing: string | undefined, values: AgentTemplateValues): RenderedAgentFile; //# sourceMappingURL=render.d.ts.map