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