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