/** @typedef {typeof __propDef.props} BiBalloonProps */ /** @typedef {typeof __propDef.events} BiBalloonEvents */ /** @typedef {typeof __propDef.slots} BiBalloonSlots */ export default class BiBalloon extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type BiBalloonProps = typeof __propDef.props; export type BiBalloonEvents = typeof __propDef.events; export type BiBalloonSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};