import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { price: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type PriceBgProps = typeof __propDef.props; export declare type PriceBgEvents = typeof __propDef.events; export declare type PriceBgSlots = typeof __propDef.slots; export default class PriceBg extends SvelteComponentTyped { } export {};