import { BaseEntity } from 'typeorm';
import { OrderEntity } from '../../order/entities/order.entity';
import { UserEntity } from '../../user/entities/user.entity';
import { CityEntity } from './city.entity';
export declare class AddressEntity extends BaseEntity {
    id: number;
    name: string | null;
    address: string | null;
    location: string | null;
    userId: string | null;
    cityId: number | null;
    deleted: boolean | null;
    createdAt: Date;
    updatedAt: Date;
    user: UserEntity;
    city: CityEntity;
    orders: OrderEntity[];
}
