import { ITeam, IUser } from '../resource-models'; import { APIEndpoint } from '../../lib'; import { IMeGetParams, IMePostData, IMeTeamsGetParams } from './param-models'; export declare const namespaceBase = "/accounts/v1/me"; /** * get/post user details whom current access token representing */ export declare const Me: APIEndpoint; /** * get all teams in which current user(represented by accessToken) is effectively member of */ export declare const MyTeams: APIEndpoint; declare const _default: { namespaceBase: string; Me: APIEndpoint; MyTeams: APIEndpoint; }; export default _default;