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