import type { IconName } from './_internal/components/Icon/Icon.types'; export interface AccordionProps { /** * The filename of the icon that will be displayed on the left side of the header */ icon?: IconName; /** * Title of the Accordion, displayed in the header */ title?: string; /** * Whether the Accordion is expanded or not */ isExpanded?: boolean; } type ToggleState = { isExpanded: boolean; }; declare var __VLS_1: {}, __VLS_19: {}; type __VLS_Slots = {} & { header?: (props: typeof __VLS_1) => any; } & { default?: (props: typeof __VLS_19) => any; }; declare const __VLS_base: import("vue").DefineComponent void; close: () => void; open: () => void; }, string, import("vue").PublicProps, Readonly & Readonly<{ onClose?: (() => any) | undefined; onOpen?: (() => any) | undefined; onToggle?: ((state: ToggleState) => any) | undefined; }>, { title: string; icon: IconName; isExpanded: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };