import { FC } from 'react';
interface Props {
    wallets: {
        id: string;
        label: string;
        icon: string;
    }[];
    onWalletClick: (id: string) => void;
}
export declare const ConnectWallet: FC<Props>;
export {};
