import Restful from '../../index.js';
/**
 * Retrieves the authenticated user's account profile information.
 */
export default class Identity extends Restful {
    static id: string;
    get basePath(): string;
    get subdomain(): string;
    /**
     * This method retrieves the account profile information for an authenticated user, which requires a User access
     * token. What is returned is controlled by the scopes.
     */
    getUser(): Promise<any>;
}
