import { default as React } from 'react'; import { AccountInfoProps } from './ConnectedMain/AccountInfo'; import { NetworkOption } from './ConnectedMain/NetworkPopup'; import { Theme } from './const'; interface PropsType { className?: string; theme?: Theme; fixed?: boolean; opened: boolean; onClose?: () => void; onBack?: () => void; title?: string; renderTitle?: React.ReactNode; back?: boolean; close?: boolean; children?: React.ReactNode; isLoading?: boolean; header?: React.ReactNode; bodyClassName?: string; bodyStyle?: React.CSSProperties; showSetting?: boolean; accountInfo: AccountInfoProps; selectedNetwork: NetworkOption; networkOptions: NetworkOption[]; onNetworkSwitch: () => void; onLogout: () => void; onChangePayPin?: () => void; } declare const ConnectedModal: ({ title, theme, opened, close, back, onClose, onBack, isLoading, accountInfo, showSetting, selectedNetwork, networkOptions, onLogout, onNetworkSwitch, onChangePayPin, }: PropsType) => import("react/jsx-runtime").JSX.Element; export default ConnectedModal;