export declare const DEFAULT_OPTIONS: {
    stateSelectId: string;
    districtSelectId: string;
    placeholder: {
        state: string;
        district: string;
    };
    displayStateCode: boolean;
    validation: {
        required: boolean;
    };
};
export declare const ERROR_MESSAGES: {
    ELEMENTS_NOT_FOUND: string;
    INVALID_STATE: string;
    INVALID_DISTRICT: string;
    REQUIRED_FIELDS: string;
    STATE_REQUIRED: string;
    DISTRICT_REQUIRED: string;
    CUSTOM_VALIDATION: string;
    NO_STATE_SELECTED: string;
    INVALID_STATE_CODE: string;
    INITIALIZATION_ERROR: string;
};
