import { StateDataInterface, CityDataInterface } from "./interface/index";
export declare class CountryStateCitySelector {
    private countryList;
    private stateList;
    private cityList;
    private currentCountry;
    private currentState;
    constructor();
    getStates(): StateDataInterface[];
    selectState(stateName: string): void;
    getCities(): CityDataInterface[];
}
