/** @typedef {typeof __propDef.props} AccordionProps */ /** @typedef {typeof __propDef.events} AccordionEvents */ /** @typedef {typeof __propDef.slots} AccordionSlots */ export default class Accordion extends SvelteComponentTyped<{ [x: string]: any; title: any; body: any; }, { [evt: string]: CustomEvent; }, {}> { } export type AccordionProps = typeof __propDef.props; export type AccordionEvents = typeof __propDef.events; export type AccordionSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; title: any; body: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};