import { NewScimToken } from './NewScimToken'; import { ScimTokenInfoList } from './ScimTokenInfoList'; import { HttpClient } from '../../http'; export declare class ScimAPI { private readonly client; constructor(client: HttpClient); static readonly URL: { AUTH_TOKENS: string; SCIM: string; }; getTokens(): Promise; deleteToken(scimTokenId: string): Promise; postToken(description: string, idp?: string, name?: string, password?: string, verificationCode?: string): Promise; } //# sourceMappingURL=ScimAPI.d.ts.map