import { AddressEntity } from './address.entity';
import { StateEntity } from './state.entity';
export declare enum CityIds {
    tehran = 1,
    karaj = 74
}
export declare class CityEntity {
    id: number;
    name: string;
    stateId: number;
    mahexCode: string;
    createdAt: Date;
    updatedAt: Date;
    state: StateEntity;
    addresses: AddressEntity[];
}
