export default class User {
    /**
     * Get User - This allows you to fetch user information on Terminal Africa
     * @param {string} userId
     * @returns object
     * @method GET
     */
    static getUser(userId: string): Promise<any>;
    /**
     * Get Wallet Info - This allows you to retrieve wallet information on Terminal Africa
     * @param {string} userId
     * @returns object
     * @method GET
     */
    static walletInfo(userId: string): Promise<any>;
    /**
     * Get Wallet Balance - This allows you to retrieve wallet balance on Terminal Africa
     * @param {string} userId
     * @returns object
     * @method GET
     */
    static walletBalance(userId: string): Promise<any>;
    /**
     * Get User Carriers - This allows you to fetch acivated carriers on Terminal Africa
     * @returns object
     * @method GET
     */
    static carriers(): Promise<any>;
}
