import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
 * @action Get Current Song
 * @section Content Types > Music > Music
 * @icon Music
 *
 * Returns the song that is currently playing in the Music app, if any.
 *
 * ```js
 * getCurrentSong();
 * ```
 */
declare const getCurrentSong: () => WFWorkflowAction;
export default getCurrentSong;
