export type ConsoleLogEntry = { t: string; level: string; msg: string; }; declare global { interface Window { __tychoConsoleCaptureInstalled?: boolean; } } export declare function getConsoleLogs(): ConsoleLogEntry[];