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