import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Make Markdown from Rich Text
 * @section Content Types > Text > Rich Text
 * @icon RichText
 *
 * Converts the rich text passed as input to Markdown text (comparable to Aaron Swartz's html2text script).
 *
 * ```js
 * makeMarkdownFromRichText();
 * ```
 */
declare const makeMarkdownFromRichText: () => WFWorkflowAction;
export default makeMarkdownFromRichText;
