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