import { PropAnyComponent } from '../../helpers/common/components'; type DisclosureColor = 'default' | 'danger' | 'success' | 'warning' | 'subtle'; type __VLS_Props = { /** * HeadlessUI icon component to use */ icon?: PropAnyComponent; color?: DisclosureColor; /** * Whether to lazy load the panel contents only upon opening */ lazyLoad?: boolean; /** * If edit mode enabled - it will exit mode when user unfocuses */ exitEditModeOnBlur?: boolean; }; type __VLS_PublicProps = { 'editTitle'?: boolean; 'title'?: string; 'open'?: boolean; } & __VLS_Props; declare function __VLS_template(): { attrs: Partial<{}>; slots: { 'title-actions'?(_: {}): any; default?(_: {}): any; }; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:open": (value: boolean) => any; "update:editTitle": (value: boolean) => any; "update:title": (value: string) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; "onUpdate:editTitle"?: ((value: boolean) => any) | undefined; "onUpdate:title"?: ((value: string) => any) | undefined; }>, { color: DisclosureColor; exitEditModeOnBlur: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };