import { GetMe200Response } from '../../models/base/get-me200-response/index'; import { Api, ApiClient, RequestMetadata } from '@ama-sdk/core'; /** Parameters object to UsersApi's getMe function */ export interface UsersApiGetMeRequestData { } export declare class UsersApi implements Api { /** API name */ static readonly apiName = "UsersApi"; /** @inheritDoc */ readonly apiName = "UsersApi"; /** Tokens of the parameters containing PII */ readonly piiParamTokens: { [key: string]: string; }; /** @inheritDoc */ client: ApiClient; /** * Initialize your interface * * @param apiClient Client used to process call to the API */ constructor(apiClient: ApiClient); /** * Get current user * Returns the user information for the currently authenticated user. * @param data Data to provide to the API call * @param metadata Metadata to pass to the API call */ getMe(data: UsersApiGetMeRequestData, metadata?: RequestMetadata): Promise; } //# sourceMappingURL=users-api.d.ts.map