import { RequestOptionsFactory } from '@wix/sdk-types'; /** Creates a report for the reported member. */ export declare function reportMember(payload: object): RequestOptionsFactory; /** * Creates a query to retrieve a list of events. * * The `queryMemberReports()` function builds a query to retrieve a list of member reports and returns a `MemberReportsQueryBuilder` object. * * The returned object contains the query definition, which is typically used to run the query using the `find()` function. * * You can refine the query by chaining `MemberReportsQueryBuilder` functions onto the query. `MemberReportsQueryBuilder` functions enable you to sort, filter, and control the results `queryMemberReports()` returns. * * `queryMemberReports()` runs with these `MemberReportsQueryBuilder` defaults, which you can override: * * - limit(50) * * The functions that are chained to `queryMemberReports()` are applied in the order they're called. For example, if you apply ascending('status') and then descending('reportedMemberId'), the results are sorted first by the status, and then, if there are multiple results with the same title, the items are sorted by reported member ID. */ export declare function queryMemberReports(payload: object): RequestOptionsFactory; /** * Retrieves a list of reported members. * @deprecated It has been replaced with wix.members.reports.v1.MemberReportOverviews.QueryMemberReportOverviews(), and will be removed on 2025-01-31. */ export declare function listReportedMembers(payload: object): RequestOptionsFactory; /** * Retrieves a list of reported members, given the provided paging, filtering, and sorting. * * Query Reported Members runs with these defaults, which you can override: * - `createdDate` is sorted in `ASC` order * - `paging.limit` is `100` * - `paging.offset` is `0` * * For field support for filters and sorting, see [Supported Filters and Sorting](). * To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/pagination), and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection). * @deprecated It has been replaced with wix.members.reports.v1.MemberReportOverviews.QueryMemberReportOverviews(), and will be removed on 2025-01-31. */ export declare function queryReportedMembers(payload: object): RequestOptionsFactory; /** Deletes all reports of a member. */ export declare function deleteMemberReports(payload: object): RequestOptionsFactory;