import { BaseApiClient } from '../BaseApiClient'; import { ICreateUsername, IGetUserOwnUsernameResponse, IGetUsernamesV1QueryParams, getUsernamesV1Response } from './interfaces'; import { FronteggPaginationWrapper, UserJwtOptions } from '../interfaces'; export declare class UsernamesApi extends BaseApiClient { constructor(appName: string); getUsernamesV1: (queryParams: IGetUsernamesV1QueryParams, options?: UserJwtOptions) => Promise>; /** * Get own username of user */ getUserOwnUsername: () => Promise; /** * Create new username for user */ createUsername: (body: ICreateUsername) => Promise; /** * Delete existing username for user */ deleteUsername: (username: string) => Promise; } declare const _default: UsernamesApi; export default _default;