export declare const CODING_AGENT_RENDER_LIMITS: { readonly text: 40000; readonly result: 12000; readonly input: 6000; readonly todos: 50; readonly todoText: 200; }; export declare function capCodingAgentText(value: string, max: number): string; export declare function codingAgentCommand(input?: Record): string; export declare function codingAgentFilePath(input?: Record): string; export type CodingAgentToolKind = 'todo' | 'terminal' | 'read' | 'edit' | 'search' | 'code'; export declare function codingAgentToolKind(tool: string | undefined, input?: Record): CodingAgentToolKind; //# sourceMappingURL=render.d.ts.map