/**
 * Represents a collection of functions related to political divisions in Nepal.
 */
declare const _default: {
    /**
     * Retrieves the list of provinces in Nepal.
     * @returns An array of province names.
     */
    Province: () => string[];
    /**
     * Retrieves the list of districts in a specific province.
     * @param provinceName - The name of the province.
     * @returns An array of district names.
     */
    DistrictByProvince: (provinceName: string) => string[];
    /**
     * Retrieves the list of local bodies in a specific district.
     * @param districtName - The name of the district.
     * @returns An array of local body names.
     */
    LocalBodiesByDistrict: (districtName: string) => string[];
    /**
     * Retrieves the list of ward details for a specific municipality.
     * @param municipalityName - The name of the municipality.
     * @returns An array of ward numbers.
     */
    WardDetails: (municipalityName: string) => number[];
};
export default _default;
