import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Delete Photos
 * @section Content Types > Photos & Video > Photos
 * @icon Photos
 *
 * Deletes the photos passed as input from the device's photo library. This action asks for confirmation before performing the deletion.
 *
 * ```js
 * deletePhotos();
 * ```
 */
declare const deletePhotos: () => WFWorkflowAction;
export default deletePhotos;
