import { FC } from 'react'; interface FieldProps { label: string; value: string; } export interface AccountInformationProps { email?: FieldProps; firstName?: FieldProps; lastName?: FieldProps; zip?: FieldProps; street?: FieldProps; additionalInformation?: FieldProps; city?: FieldProps; company?: FieldProps; streetNo?: FieldProps; phone?: FieldProps; } declare const AccountInformation: FC; export default AccountInformation;