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