import { IAddress, IDeliveryArea } from '../interfaces';
import { CoordsEntity } from './coords.entity';
export declare class AddressEntity implements IAddress {
    city: string;
    complement: string | null;
    coords: CoordsEntity;
    country: string;
    deliveryArea: IDeliveryArea | null;
    formattedAddress: string | null;
    id: string | null;
    isDefault: boolean;
    name: string | null;
    neighborhood: string;
    postalCode: string;
    reference: string | null;
    state: string;
    streetName: string;
    streetNumber: string;
    cannoliDeliveryFee: number | null;
    cannoliDeliveryFeeOnline: number | null;
    constructor(data?: Partial<AddressEntity>);
}
