import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { value: number; currency?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type PriceFormatterProps = typeof __propDef.props; export declare type PriceFormatterEvents = typeof __propDef.events; export declare type PriceFormatterSlots = typeof __propDef.slots; export default class PriceFormatter extends SvelteComponentTyped { } export {};