import { BaseAPIRequestFactory } from './baseapi.js'; import { Configuration } from '../configuration.js'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http.js'; export declare class OrganizationApiRequestFactory extends BaseAPIRequestFactory { getOwners(all?: string, _options?: Configuration): Promise; getOwnersDot(all?: string, _options?: Configuration): Promise; getSubordinateOwners(username: string, all?: string, _options?: Configuration): Promise; getSubordinateSubordinates(username: string, all?: string, _options?: Configuration): Promise; getSubordinates(all?: string, _options?: Configuration): Promise; getSubordinatesDot(all?: string, _options?: Configuration): Promise; listSubordinateAuthorities(username: string, _options?: Configuration): Promise; removeSubordinateSubordinatesTree(username: string, _options?: Configuration): Promise; updateSubordinateAuthorities(username: string, requestBody: Set, _options?: Configuration): Promise; updateSubordinateOwners(username: string, requestBody: Array, _options?: Configuration): Promise; updateSubordinateSubordinates(username: string, requestBody: Array, _options?: Configuration): Promise; } export declare class OrganizationApiResponseProcessor { getOwnersWithHttpInfo(response: ResponseContext): Promise>>; getOwnersDotWithHttpInfo(response: ResponseContext): Promise>; getSubordinateOwnersWithHttpInfo(response: ResponseContext): Promise>>; getSubordinateSubordinatesWithHttpInfo(response: ResponseContext): Promise>>; getSubordinatesWithHttpInfo(response: ResponseContext): Promise>>; getSubordinatesDotWithHttpInfo(response: ResponseContext): Promise>; listSubordinateAuthoritiesWithHttpInfo(response: ResponseContext): Promise>>; removeSubordinateSubordinatesTreeWithHttpInfo(response: ResponseContext): Promise>; updateSubordinateAuthoritiesWithHttpInfo(response: ResponseContext): Promise>; updateSubordinateOwnersWithHttpInfo(response: ResponseContext): Promise>; updateSubordinateSubordinatesWithHttpInfo(response: ResponseContext): Promise>; }