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