import { WxIsvServiceBase } from '../libs/WxIsvServiceBase';
export declare class WxIsvTesterService extends WxIsvServiceBase {
    bind(accessToken: string, wechatid: string): Promise<{
        errcode: number;
        errmsg: string;
        userstr: string;
    }>;
    unbind(accessToken: string, wechatid: string, userstr?: string): Promise<{
        errcode: number;
        errmsg: string;
    }>;
    getList(accessToken: string): Promise<{
        errcode: number;
        errmsg: string;
        members: {
            userstr: string;
        }[];
    }>;
}
