import { AccountInfoProps } from './AccountInfo'; interface PropsType { className?: string; accountInfo: AccountInfoProps; showSetting?: boolean; onClose?: () => void; onBack?: () => void; onChangePayPin?: () => void; } declare const ConnectedMain: ({ accountInfo, showSetting, onChangePayPin, }: PropsType) => import("react/jsx-runtime").JSX.Element; export default ConnectedMain;