import { IApplication } from './types/api.interfaces'; import { IWebexAppsUser, IWebexAppsUserState } from './types/user.interfaces'; /** * Webex Embedded Apps user instance. * * @public */ declare class WebexAppsUser implements IWebexAppsUser { sdk: IApplication; states: IWebexAppsUserState; constructor(sdk: IApplication); initialze(): Promise; updateStates(newStates: IWebexAppsUserState, eventName?: string): void; decodeToken(): void; getStates(): IWebexAppsUserState; getUser(_isReadyCheckNotRequired?: boolean): Promise; } export default WebexAppsUser; //# sourceMappingURL=user.d.ts.map