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