import type { Operation } from "../Operation.js"; import { OperationRegistry } from "../OperationRegistry.js"; export declare class LogViewerOperations extends OperationRegistry { protected readonly _prefix = "log-viewer"; /** * Displays the Log Viewer. Mobile only. * * @mobileOnly */ get display(): Operation; /** * Closes the Log Viewer. Mobile only. * * @mobileOnly */ get close(): Operation; }