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