type ConsoleOutputEntry = {
    type: "log" | "error" | "warn" | "info" | "debug";
    args: unknown[];
};
export declare function getConsoleOutput(): ConsoleOutputEntry[];
export declare function clearConsoleOutput(): void;
export {};
