import { RequestOptionsFactory } from '@wix/sdk-types'; /** Retrieves an event registration form (both the draft and published versions). */ export declare function getForm(payload: object): RequestOptionsFactory; /** Adds an input control to the draft form. */ export declare function addControl(payload: object): RequestOptionsFactory; /** Updates an existing input control in the draft form. */ export declare function updateControl(payload: object): RequestOptionsFactory; /** Deletes an input control from the draft form. */ export declare function deleteControl(payload: object): RequestOptionsFactory; /** * Updates draft form messages, as displayed in the Wix UI before, during, and after the registration flow. * Configurable messages include form titles, response labels, "thank you" messages, and call-to-action texts. */ export declare function updateMessages(payload: object): RequestOptionsFactory; /** Publishes the draft form. */ export declare function publishDraft(payload: object): RequestOptionsFactory; /** Clears all changes to the draft form. */ export declare function discardDraft(payload: object): RequestOptionsFactory;