import { WxIsvServiceBase } from '../libs/WxIsvServiceBase';
export declare class WxIsvCategoryService extends WxIsvServiceBase {
    getCategory(accessToken: string): Promise<{
        errcode: number;
        errmsg: string;
        categoryList: ({
            firstClass: string;
            secondClass: string;
            firstId: number;
            secondId: number;
            thirdClass?: undefined;
            thirdId?: undefined;
        } | {
            firstClass: string;
            secondClass: string;
            thirdClass: string;
            firstId: number;
            secondId: number;
            thirdId: number;
        })[];
    }>;
}
