import { type ComponentType } from '../../model/ComponentType'; import { type ButtonCommonContent } from '../../ui-kit/LinkButton/LinkButtonContent'; import { Currency } from './CurrencyProps'; export interface ExchangeCurrencyItem { currency?: { id?: number; code?: string; currency?: Currency; }; buyExchangeRate?: number; saleExchangeRate?: number; } export interface ExchangeCurrencyCalculatorProps extends ComponentType { currencyRatesBuy: ExchangeCurrencyItem[]; currencyRatesSell: ExchangeCurrencyItem[]; button?: ButtonCommonContent; } export interface CalcState { inputSell: string; inputBuy: string; selectSell: Currency; selectBuy: Currency; } export declare const ExchangeCurrencyCalculator: import("@redneckz/uni-jsx").UNIComponent;