interface PriceTagProps { amount: number | string; currency?: string; period?: string; compareAt?: number | string; badge?: string; size?: 'sm' | 'md' | 'lg'; class?: string; } declare const PriceTag: import("svelte").Component; type PriceTag = ReturnType; export default PriceTag;