import { SDKCore } from "../core.js";
import { RequestOptions } from "../lib/sdks.js";
import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js";
import * as errors from "../models/errors/index.js";
import { ResponseValidationError } from "../models/errors/responsevalidationerror.js";
import { SDKBaseError } from "../models/errors/sdkbaseerror.js";
import { SDKValidationError } from "../models/errors/sdkvalidationerror.js";
import * as operations from "../models/operations/index.js";
import { APIPromise } from "../types/async.js";
import { Result } from "../types/fp.js";
export declare enum UpdateOrganizationMemberAcceptEnum {
applicationJson = "application/json",
applicationProblemPlusJson = "application/problem+json"
}
/**
* Update a member's roles in an organization
*
* @remarks
* Update the roles assigned to an organization member. This operation replaces a member's roles with the list provided in the request body. To remove all roles from a member, provide an empty list. To completely remove a member from an organization, use the [remove member endpoint](https://docs.censys.com/reference/v3-accountmanagement-remove-org-member).
Only users with the Admin role in the provided organization can perform this operation.
This endpoint does not cost any credits to execute.
*/
export declare function accountManagementUpdateOrganizationMember(client: SDKCore, request: operations.V3AccountmanagementUpdateOrgMemberRequest, options?: RequestOptions & {
acceptHeaderOverride?: UpdateOrganizationMemberAcceptEnum;
}): APIPromise>;
//# sourceMappingURL=accountManagementUpdateOrganizationMember.d.ts.map