import { RequestOptionsFactory } from '@wix/sdk-types'; /** * Removes a team member from the requesting account. * > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only. */ export declare function removeMember(payload: object): RequestOptionsFactory; /** * Retrieves all team members of the requesting account, based on the provided filters and free text queries. * > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only. */ export declare function searchTeam(payload: object): RequestOptionsFactory; /** * Retrieves all available roles in the requesting account, including predefined and custom roles. * > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only. */ export declare function getRolesInfo(payload: object): RequestOptionsFactory; /** * Updates the assignments of roles and conditions for an existing team member. Changing assignments changes the team member’s access to account assets. * > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only. */ export declare function updateTeamMemberAssignments(payload: object): RequestOptionsFactory;