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