import { API } from "./api";
export declare class AreaService {
    api: API;
    cacheArea: any;
    constructor(api: API);
    selectBoxHandler(): any;
    /**
     * 根据code回显名称
     */
    selectBoxLabelHandler(): any;
    /**
     * 设置缓存
     * @param code 编码
     * @param data 区域数组
     */
    setCache(code: string, data: any): void;
    /**
     *获取缓存
     * @param code 编码
     */
    getCache(code: string): any;
}
