import { Verb } from '../Verb'; export interface PlayAudioAttributes { username?: string; password?: string; } /** * @export * @class PlayAudio * @extends {Verb} * Represents a PlayAudio verb */ export declare class PlayAudio extends Verb { audioUri: string; attributes: PlayAudioAttributes; /** * Creates an instance of PlayAudio * @param {string} audioUri The URL of the audio to play * @param {PlayAudioAttributes} attributes The attributes to add to the element */ constructor(audioUri: string, attributes?: PlayAudioAttributes); }