import React, { PropsWithChildren } from "react"; declare type Props = { onClose?: () => void; dark?: boolean; }; declare const ConnectDialog: React.FC>; export default ConnectDialog;