import type { TPaymentCurrency } from '@blocklet/payment-types';
type Props = {
    value: string;
    currencies: TPaymentCurrency[];
    onChange: Function;
};
export default function CurrencySelector({ value, currencies, onChange }: Props): import("react").JSX.Element;
export {};
