import { AppUser } from '../../types'; import AppsAPIClient from '..'; export default class Users { private client; constructor(apiClient: AppsAPIClient); /** * Gets the current user for the given API key. * @returns {Promise} Promise that resolves to an AppUser. */ getCurrent(): Promise; }