import { ExternalButton } from "../../interfaces"; interface ExternalWalletButtonProps { button: ExternalButton; handleWalletClick: (button: ExternalButton) => void; } export default function ExternalWalletButton(props: ExternalWalletButtonProps): import("react/jsx-runtime").JSX.Element; export {};