/** @typedef {typeof __propDef.props} BarcodeProps */ /** @typedef {typeof __propDef.events} BarcodeEvents */ /** @typedef {typeof __propDef.slots} BarcodeSlots */ export default class Barcode extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type BarcodeProps = typeof __propDef.props export type BarcodeEvents = typeof __propDef.events export type BarcodeSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}