import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Remove Reminders
 * @section Content Types > Calendar > Reminders
 * @icon Reminders
 *
 * Removes all reminders passed into the action from the lists they are contained in.
 *
 * ```js
 * removeReminders();
 * ```
 */
declare const removeReminders: () => WFWorkflowAction;
export default removeReminders;
