import { AcApContext, AcEdCommand } from '@mlightcad/cad-simple-viewer'; /** Actions invoked by the `markuppanel` command to prepare and open review UI. */ export interface AcUiMarkupPanelCommandActions { /** Ensures the dock panel and review tab exist before opening. */ prepare(): void; /** Activates the review tab in the dock panel. */ toggle(): void; } /** * Command that opens the review palette in the dock panel. */ export declare class AcApMarkupPanelUiCmd extends AcEdCommand { private readonly actions; /** * @param actions - Prepare and open callbacks wired by the plugin. */ constructor(actions: AcUiMarkupPanelCommandActions); /** * Ensures the dock panel is ready, then opens or focuses the review tab. * * @param _context - Application context (unused). */ execute(_context: AcApContext): Promise; } //# sourceMappingURL=AcApMarkupPanelUiCmd.d.ts.map