import type { DialogProps } from '@mui/material'; import React from 'react'; import type { ActiveProvider } from '../../lib/index.js'; /** Props for {@link ConnectWalletDialog}. */ export interface ConnectWalletDialogProps extends DialogProps { activeProvider?: ActiveProvider; onIgnoreConnectDialog?: (checked: boolean) => void; } /** Dialog prompting the user to connect a selected wallet provider. */ export declare const ConnectWalletDialog: React.FC; //# sourceMappingURL=Dialog.d.ts.map