import { IConnection, IOptions } from "../connection";
export declare namespace VerifyUser {
    interface Request {
        application: string;
        version: string;
    }
    interface Exception {
        Code: string;
        Audience: string;
        Source: string;
        Message: string;
    }
    interface Exceptions {
        Source: string;
        Exception: Exception[];
    }
    interface Response {
        Exceptions: Exceptions;
        retcode: number;
    }
}
export declare class AccountService {
    private _connection;
    constructor(optsConnection: IOptions | IConnection);
    connectionOptions(): IOptions;
    VerifyUser(request: VerifyUser.Request): Promise<VerifyUser.Response>;
}
//# sourceMappingURL=wsAccount.d.ts.map