import { BaseEntity } from "./base.entity";
import { Country } from "./country.entity";
import { City } from "./city.entity";
export declare class State extends BaseEntity {
    countryId: number;
    country: Country;
    cities: City[];
    stateName: string;
    stateCode: string;
    isActive: boolean;
}
