import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Set Cellular Data
 * @section Actions > Scripting > Device
 * @icon CellularData
 *
 * Sets the device’s Cellular Data to on or off.
 *
 * ```js
 * setCellularData({
 *   value: true,
 * });
 * ```
 */
declare const setCellularData: ({ value, }: {
    /** Enable or disable cellular data */
    value?: boolean | undefined;
}) => WFWorkflowAction;
export default setCellularData;
