import { BaseCommand } from '@/core/command/base-command.service'; import type { IDrawerContentConfig } from '@/core/store/interfaces/core.interface'; export declare class UICommands extends BaseCommand { static getInstance(): UICommands; openDrawer({ mode, contentType, data, }: { mode?: 'drawer' | 'modal'; contentType: IDrawerContentConfig['type']; data?: Record; }): void; closeDrawer(): void; }