import type { ISO4217Code } from "../primitives/money.js"; import type { MoneyPrimitive } from "../primitives/money-primitive.js"; export interface MoneyInputProps { amount?: number | null | undefined; money?: MoneyPrimitive; unit?: "major" | "minor"; currency?: ISO4217Code | string; storageCurrency?: ISO4217Code | string; min?: number; max?: number; placeholder?: string; oninput?: (val: number) => void; disabled?: boolean; } declare const MoneyInput: import("svelte").Component< MoneyInputProps, {}, "amount" >; type MoneyInput = ReturnType; export default MoneyInput;