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