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