/** @typedef {typeof __propDef.props} PriceProps */ /** @typedef {typeof __propDef.events} PriceEvents */ /** @typedef {typeof __propDef.slots} PriceSlots */ export default class Price extends SvelteComponentTyped<{ properties: any; settings: any; }, { [evt: string]: CustomEvent; }, {}> { } export type PriceProps = typeof __propDef.props; export type PriceEvents = typeof __propDef.events; export type PriceSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { properties: any; settings: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};