/** @typedef {typeof __propDef.props} BusProps */ /** @typedef {typeof __propDef.events} BusEvents */ /** @typedef {typeof __propDef.slots} BusSlots */ export default class Bus extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type BusProps = typeof __propDef.props export type BusEvents = typeof __propDef.events export type BusSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}