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