import { FC, ReactNode, ReactType } from 'react'; import { AccountInformationProps } from '../../components/AccountInformation'; import { ServiceCallsInformationProps } from '../../components/ServiceCallsInformation'; export interface AccountPageProps { title: string; children?: ReactNode; logoutLabel: string; personalInformationLabel: string; serviceCallsLabel: string; logout: () => void; AccountInformation?: ReactType; AccountInformationProps?: AccountInformationProps; ServiceCallsInformation?: ReactType; ServiceCallsInformationProps?: ServiceCallsInformationProps; } declare const AccountPage: FC; export default AccountPage;