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