import React from 'react'; type Props = { onClick?: React.MouseEventHandler | undefined; as?: React.ElementType; currentlySelected?: boolean; ready?: boolean; recent?: boolean; loading: boolean; id: string; name: string; iconUrl: string | (() => Promise); iconBackground?: string; testId?: string; isKryptogoKitConnector?: boolean; downloadUrl?: string; }; export declare const ModalSelection: ({ as, currentlySelected, iconBackground, iconUrl, id, name, onClick, ready, recent, loading, testId, isKryptogoKitConnector, downloadUrl, ...urlProps }: Props) => import("react/jsx-runtime").JSX.Element; export {};