import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Get Clipboard
 * @section Content Types > Sharing > Clipboard
 * @icon Clipboard
 *
 * Passes the contents of the clipboard to the next action.
 *
 * ```js
 * getClipboard();
 * ```
 */
declare const getClipboard: () => WFWorkflowAction;
export default getClipboard;
