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