/// import { ConsoleLogType } from "../WatchTheConsole.types"; export type OnLogFunction = (type: ConsoleLogType, ...args: unknown[]) => void; export declare class ConsoleProxy { private _onLog?; private _win?; set win(win: Cypress.AUTWindow); get win(): Cypress.AUTWindow; set onLog(onLog: OnLogFunction | undefined); get onLog(): OnLogFunction; }