/** * The crypto-row trailing avatar stack (Figma: Add money `list-item/base` → * `trailing` → `crypto2`). A short row of supported source-asset logos — * 16px thin-bordered circles — followed by a "+N" pill counting the rest, e.g. * `◇ ◎ ⬡ ⊖ +7`. Logos resolve from CDN chain keys so the package stays * asset-free. */ export interface SourceTokenClusterProps { /** * Logos to show — either CDN chain **keys** (e.g. `['ethereum', 'base', …]`) * or full image **URLs** (e.g. `@funkit/chains` `iconUrl`s); each entry is * resolved independently. The first `maxVisible` render as logos; the rest * collapse into the "+N" pill. */ icons: string[]; /** Logos shown before collapsing the rest into "+N". Defaults to 4 (Figma). */ maxVisible?: number; /** Logo diameter in px. Defaults to 16 (Add money row); 20 on Transfer. */ size?: number; /** Gap between chips. Figma: 2 on the Add money row, 4 on Transfer. */ gap?: number; /** * Overflow chip style. `'count'` (default) shows "+N" with the remaining count * in a `pillPressed` circle (Transfer deposit row, Figma `tap-target`). * `'plus'` shows a bare "+" glyph in a `bgSecondary` circle regardless of count * (Add money Crypto row, Figma `crypto2`). */ overflowMode?: 'count' | 'plus'; } export declare function SourceTokenCluster({ icons, maxVisible, size, gap, overflowMode, }: SourceTokenClusterProps): import("react").JSX.Element; //# sourceMappingURL=SourceTokenCluster.d.ts.map