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