import { BaseEntity } from "./base.entity";
import { Country } from "./country.entity";
import { State } from "./state.entity";
export declare class City extends BaseEntity {
    countryId: number;
    country: Country;
    stateId: number;
    state: State;
    cityCode: string;
    cityName: string;
    isActive: boolean;
}
