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