import { NumberFieldProps } from 'react-aria-components'; export type CurrencyConfig = { locale: string; minimumFractionDigits: number; maximumFractionDigits: number; symbol: string; }; type InputProps = NumberFieldProps & { label?: string; isSuccess?: boolean; helpText?: string; currency: string; }; export type CurrencyInputProps = InputProps & { currency: string; size?: 's' | 'm' | 'l'; }; export {}; //# sourceMappingURL=types.d.ts.map