import { AbstractRestfulClient } from '../abstractRestfulClient'; import { AxiosResponse } from 'axios'; import { WhoAmIResponseData } from './entities/whoAmI'; export declare class WhoAmIClient extends AbstractRestfulClient { /** * Gets and returns the raw whoami call response data * @returns Promise\\> */ getWhoamiRaw(): Promise>; /** * Returns the formatted WhoAmI entity data from the whoami call * @returns Promise\<{@link WhoAmIResponseData}\> */ getWhoami(): Promise; }