import { RequestOptionsFactory } from '@wix/sdk-types'; /** * Retrieves the membership questions for a group. * * >**Note:** * >This endpoint requires [visitor or member authentication](https://dev.wix.com/docs/rest/articles/getting-started/access-types-and-permissions). */ export declare function listMembershipQuestions(payload: object): RequestOptionsFactory; /** * Creates membership questions if none have been set up. Otherwise, replaces all existing questions. * * Providing an empty array means that members won't have to answer any question when joining the group. * Only admins can create or replace membership questions. * * >**Note:** * >This endpoint requires [visitor or member authentication](https://dev.wix.com/docs/rest/articles/getting-started/access-types-and-permissions). */ export declare function createOrReplaceAllMembershipQuestions(payload: object): RequestOptionsFactory; /** * Retrieves the answers to the membership questions, given the provided filters. * * >**Note:** * >This endpoint requires [visitor or member authentication](https://dev.wix.com/docs/rest/articles/getting-started/access-types-and-permissions). */ export declare function listAnswers(payload: object): RequestOptionsFactory;