import { AxiosPromise } from "axios";
/**
 * 请求参数
 */
export interface LoginData {
    /**
     * 手机号
     */
    phone: string;
    /**
     * 用户名
     */
    username: string;
    /**
     * 验证码缓存key
     */
    captchaCode: string;
    verify_code: string;
}
/**
 * 相应参数
 */
export interface LoginResult {
    /**
     * 手机号
     */
    phone: string;
    /**
     * 用户名
     */
    username: string;
    /**
     * 验证码缓存key
     */
    captchaCode: string;
    verify_code: string;
}
export declare function getDistribution(parentGuid: any): AxiosPromise<LoginResult>;
export declare function editDistribution(parentGuid: any): AxiosPromise<LoginResult>;
