import { ActionDto } from './action.dto'; import { MenuDtoWithSubmenu, MenuDtoWithUrl } from './menu.dto'; import { TabDto } from './tab.dto'; export declare class ClientPanelTabsDto { item?: TabDto[]; } export declare class ClientPanelMoreActionsDto { item?: ActionDto[]; } export declare class ClientPanelDto { /** * Defines the tab structure for the client panel. */ tabs?: ClientPanelTabsDto; /** * Defines additional actions that can be performed in the client panel. */ moreActions?: ClientPanelMoreActionsDto; /** * The main menu for the client panel. * This can be a simple menu with a URL or a menu with submenus. */ menu?: MenuDtoWithSubmenu | MenuDtoWithUrl; }