import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Correct Spelling
 * @section Content Types > Text > Text Editing
 * @icon Text
 *
 * Autocorrects the spelling of text passed into the action.
 *
 * ```js
 * correctSpelling();
 * ```
 */
declare const correctSpelling: () => WFWorkflowAction;
export default correctSpelling;
