import { JSX } from 'react'; import { CurrencyCode } from '../../helpers/currencies'; import { InputCurrencyProps } from './InputCurrency'; import { InputWrapperBaseProps } from '../internals/InputWrapper'; type Cents = InputCurrencyProps["cents"]; export interface InputCurrencyRangeProps extends InputWrapperBaseProps { fromCents?: Cents; toCents?: Cents; onChange: (from: { cents: Cents; formatted: string; }, to: { cents: Cents; formatted: string; }, currency: CurrencyCode) => void; placeholders?: [string, string]; currencyList: readonly [CurrencyCode, ...CurrencyCode[]]; defaultCurrency?: CurrencyCode; className?: string; } export declare function InputCurrencyRange({ fromCents, toCents, placeholders, onChange, label, hint, currencyList, inline, defaultCurrency, className, feedback, }: InputCurrencyRangeProps): JSX.Element; export declare namespace InputCurrencyRange { var displayName: string; } export {};