import { ComponentSize } from '../../enums'; /** * @emits {void} opened - Emitted when the expansion panel is opened * @emits {void} closed - Emitted when the expansion panel is closed * * @slot default - Content of the expansion panel * @slot title - Title of the expansion panel * @slot actions - Actions of the expansion panel * @slot-scope {function} open - Function to open the panel * @slot-scope {boolean} opened - Whether the panel is currently opened */ type __VLS_Props = { /** * Size of the expansion panel * @type {string} * @default 'md' * @options ['sm', 'md'] */ size?: ComponentSize; /** * Whether the expansion panel is initially collapsed. Also, can force expansion state, if changed * @type {boolean} * @default false */ collapsed?: boolean; }; declare var __VLS_1: {}, __VLS_3: { open: () => void; opened: boolean; }, __VLS_16: {}; type __VLS_Slots = {} & { title?: (props: typeof __VLS_1) => any; } & { actions?: (props: typeof __VLS_3) => any; } & { default?: (props: typeof __VLS_16) => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { opened: () => any; closed: () => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onOpened?: () => any; onClosed?: () => any; }>, { size: ComponentSize; collapsed: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };