import type { TPaymentCurrency } from '@blocklet/payment-types'; interface CurrencyGridProps { currencies: TPaymentCurrency[]; selectedId: string | undefined; onSelect: (id: string) => Promise; } export default function CurrencyGrid({ currencies, selectedId, onSelect }: CurrencyGridProps): import("react").JSX.Element | null; export {};