type InputStatus = 'default' | 'error' | 'success' | 'warning'; type InputSize = 'sm' | 'md' | 'lg'; interface CurrencyInputProps { id?: string; value?: number; currency?: string; locale?: string; min?: number; max?: number; label?: string; disabled?: boolean; status?: InputStatus; helperText?: string; size?: InputSize; class?: string; onchange?: (value: number) => void; } declare const CurrencyInput: import("svelte").Component; type CurrencyInput = ReturnType; export default CurrencyInput;