import { RequestOptionsFactory } from '@wix/sdk-types'; /** * Approves pending join requests. * Group managers always have access to this functionality. In some cases, site owners will allow group members to use this functionality as well. */ export declare function approveJoinRequests(payload: object): RequestOptionsFactory; /** * Rejects pending join requests. * Group managers always have access to this functionality. In some cases, site owners will allow group members to use this functionality as well. */ export declare function rejectJoinRequests(payload: object): RequestOptionsFactory; /** * Retrieves a list of up to 100 join requests, given the provided paging. * Group managers always have access to this functionality (site members can access their own join requests in the site). */ export declare function listJoinRequests(payload: object): RequestOptionsFactory; /** * Retrieves a list of up to 100 join requests, given the provided paging and filtering. * Group managers always have access to this functionality (site members can access their own join requests in the site). * * Supported fields for filtering: * - `status` * * No supported fields for sorting */ export declare function queryJoinRequests(payload: object): RequestOptionsFactory;