import { PanelName } from './collapseContext'; interface Props { bordered?: boolean; customClass?: string; defaultExpanded?: boolean; disabled?: boolean; name?: PanelName; title?: string; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { header?(_: { active: boolean; }): any; arrow?(_: {}): any; default?(_: {}): any; }; refs: { contentRef: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent & Readonly<{}>, { name: PanelName; title: string; bordered: boolean; customClass: string; defaultExpanded: boolean; disabled: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { contentRef: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };