import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Extract Archive
 * @section Content Types > Documents > Archives
 * @icon Documents
 *
 * Extracts files from the archive passed as input. Many archive formats are supported, including zip, rar, tar.gz, tar.bz2, tar, gzip, cpio, cab, and iso archives.
 *
 * ```js
 * extractArchive();
 * ```
 */
declare const extractArchive: () => WFWorkflowAction;
export default extractArchive;
