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