import { ActivitybarModel, RightSidebarModel, ViewsContainersModel } from '../../../types/src/index'; export type Attr = 'id' | 'title'; export declare function usePanel(): { getActivitybars: import('vue').ComputedRef; getRightSidebars: import('vue').ComputedRef; hideActivitybar: (title: string) => void; hideRightSidebar: (value: string) => void; registerActivitybar: (activitybar: ActivitybarModel) => void; registerRightSidebar: (rightSidebar: RightSidebarModel) => void; showActivitybar: (title: string) => void; showRightSidebar: (title: string) => void; viewsContainers: ViewsContainersModel; };