import React, { CSSProperties, PropsWithChildren } from "react"; declare type Props = { style?: CSSProperties; dark?: boolean; onConnect?: () => void; onDisconnect?: () => void; }; declare const ConnectButton: React.FC>; export default ConnectButton;