/** * The chain-logo cluster shown in the center of the deposit QR (Figma: qr-code * → `icon/chain`). It reflects the selected network: a single network renders * one large logo (e.g. Solana), a multi-chain network renders a 2×2 grid of * small logos (e.g. EVM: Ethereum / Aptos / Base / BNB). Logos resolve from CDN * chain keys OR full image URLs so the package stays asset-free. * * The QR behind it is drawn at high error-correction ({@link QrCode} `ecl="H"`), * so this central occlusion stays scannable. */ export interface QrChainClusterProps { /** * Logos for the selected network — either CDN chain **keys** (e.g. * `['ethereum', 'bsc']`) or full image **URLs** (`@funkit/chains` `iconUrl`s). * One entry → a single logo; 2–4 → a 2×2 grid. */ iconKeys: string[]; /** Max logos in the grid before the rest are dropped (Figma shows 4). */ max?: number; } export declare function QrChainCluster({ iconKeys, max }: QrChainClusterProps): import("react").JSX.Element | null; //# sourceMappingURL=QrChainCluster.d.ts.map