/** @typedef {typeof __propDef.props} SummaryProps */ /** @typedef {typeof __propDef.events} SummaryEvents */ /** @typedef {typeof __propDef.slots} SummarySlots */ export default class Summary extends SvelteComponentTyped<{ class: any; style: any; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type SummaryProps = typeof __propDef.props; export type SummaryEvents = typeof __propDef.events; export type SummarySlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class: any; style: any; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};