import { TradeEntry } from '../types/index.js'; import { Locale } from '../i18n/index.js'; export interface RecentTradesProps { trades: TradeEntry[]; currency?: string; maxItems?: number; locale?: Locale; } export declare function RecentTrades({ trades, currency, maxItems, locale }: RecentTradesProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=recent-trades.d.ts.map