export interface IAddress {
    [x: string]: {
        addressStreet: string;
        city: string;
        country: string;
        id?: number;
        new: boolean;
        note?: string;
        postalCode: string;
        region: string;
    };
}
