/** * Ensures final assistant responses include a "Next steps" section. * Returns both the full output and any appended text so callers can stream just the delta. */ export interface FinalResponseFormat { output: string; appended: string | null; } export declare function ensureNextSteps(content: string, _context?: string): FinalResponseFormat; //# sourceMappingURL=finalResponseFormatter.d.ts.map