import { IAddress } from '../interfaces';
import { CoordsEntity } from './coords.entity';
export declare class AddressEntity implements IAddress {
    city: string;
    complement: string | null;
    coords: CoordsEntity;
    neighborhood: string;
    postalCode: string;
    state: string;
    streetName: string;
    streetNumber: string;
    constructor(data?: Partial<AddressEntity>);
}
