import { CountryCode } from '../enums/country-code.enum.js';

type Address = {
    street: string;
    city: string;
    zip: string;
    country: CountryCode;
};

export type { Address };
