import { AuthParams, DepositAccount, TenantView, ZeniAccountsConfigSelectorView } from '@zeniai/client-epic-state'; import { ZeniAccountInfoTab as TabId } from '../helpers/titleHelpers'; export interface AccountInfoPageContentProps { authParams: AuthParams; currentTab: TabId; depositAccount: DepositAccount; downloadAccountDetailEndPoint: string; zeniAccountsConfigDetail: ZeniAccountsConfigSelectorView; currentTenant?: TenantView; } declare const AccountInfoPageContent: ({ authParams, downloadAccountDetailEndPoint, currentTab, depositAccount, zeniAccountsConfigDetail, currentTenant, }: AccountInfoPageContentProps) => import("react/jsx-runtime").JSX.Element; export default AccountInfoPageContent;