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