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