/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PropType } from 'vue'; /** * @hidden */ export interface PanelBarGroupProps { item?: object; items?: any[]; animation?: boolean; expanded?: boolean; disabled?: boolean; content?: any; keepItemsMounted?: boolean; uniquePrivateKey?: string | number; } /** * @hidden */ export interface PanelBarGroupData { show: boolean; } /** * @hidden */ declare const PanelBarItem: import('vue').DefineComponent; items: PropType; animation: PropType; expanded: PropType; disabled: PropType; selected: PropType; level: PropType; title: { type: PropType; default: () => string; }; id: PropType; focused: PropType; keepItemsMounted: PropType; uniquePrivateKey: PropType; parentUniquePrivateKey: PropType; parentExpanded: PropType; headerClassName: PropType; iconClass: PropType; imageUrl: PropType; icon: PropType; svgIcon: PropType; content: PropType; header: PropType; }>, {}, {}, {}, { handleItemClick(): void; childFactory(child: any): any; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; items: PropType; animation: PropType; expanded: PropType; disabled: PropType; selected: PropType; level: PropType; title: { type: PropType; default: () => string; }; id: PropType; focused: PropType; keepItemsMounted: PropType; uniquePrivateKey: PropType; parentUniquePrivateKey: PropType; parentExpanded: PropType; headerClassName: PropType; iconClass: PropType; imageUrl: PropType; icon: PropType; svgIcon: PropType; content: PropType; header: PropType; }>> & Readonly<{}>, { title: any; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { PanelBarItem };