import { Address } from './address.type.js';
import '../enums/country-code.enum.js';

type PrivatePersonInformation = {
    contact: {
        firstname: string;
        lastname: string;
        phoneNumber?: string;
        email: string;
    };
} & Address;

export type { PrivatePersonInformation };
