/** * Session-level tracker for execute_python workaround calls. * Both the editor tool (to push) and feedback tool (to read/flush) import this. */ export interface WorkaroundEntry { code: string; timestamp: string; resultSnippet?: string; } export declare function pushWorkaround(entry: WorkaroundEntry): void; export declare function getWorkarounds(): readonly WorkaroundEntry[]; export declare function clearWorkarounds(): void; export declare function workaroundCount(): number;