import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Set Volume
 * @section Content Types > Music > Playback
 * @icon Sound
 *
 * Sets the system volume.
 *
 * ```js
 *  setVolume({
 *    volume: 50,
 * });
 * ```
 */
declare const setVolume: ({ volume, }: {
    /** Number between 0 & 100 to set the volume to */
    volume?: number | undefined;
}) => WFWorkflowAction;
export default setVolume;
