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