import { BaseEntity } from "./base.entity";
import { Job } from "./job.entity";
import { City } from "./city.entity";
import { State } from "./state.entity";
import { Country } from "./country.entity";
export declare class JobLocation extends BaseEntity {
    jobId: number;
    job: Job;
    countryId: number;
    countryName: string;
    country: Country;
    stateId: number;
    stateName: string;
    state: State;
    cityId: number;
    cityName: string;
    city: City;
    locationWiseOpenings: number;
}
