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