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