export declare const baseModelTokenLimits: Record<string, number>;
export declare function normalizeOutput(text: string): string;
export declare function checkDelegate(output: string): boolean;
export declare function checkTool(output: string): boolean;
export declare function interpolateTemplate(template: string, context: Record<string, any>): string;
export declare function normalizeInput(input: string): string;
export declare function cleanMarkdownJson(raw: string): string;
export declare function parseCSV(output: string): any[];
export declare function parseXML(output: string): any;
export declare function cleanFinalContext(finalContext: any): any;
export declare function getSafeReplacer(): (_key: string, value: any) => any;
