import { ICoords } from './i-coords';
import { IDeliveryArea } from './i-delivery-area';
export interface IAddress {
    city: string;
    complement: string | null;
    neighborhood: string;
    country: string;
    id: string | null;
    formattedAddress: string | null;
    postalCode: string;
    state: string;
    deliveryArea: IDeliveryArea | null;
    streetName: string;
    name: string | null;
    reference: string | null;
    isDefault: boolean;
    streetNumber: string;
    coords: ICoords;
    cannoliDeliveryFee: number | null;
    cannoliDeliveryFeeOnline: number | null;
}
