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