import { IRuntimeAction } from '../../IRuntimeAction';
import { OutputEvent } from '../../OutputEvent';
import { ITimerRuntime } from '../../ITimerRuntime';
import { IRuntimeEvent } from '../../IRuntimeEvent';
import { Subject } from 'rxjs';
/**
 * Action that plays a sound during workout execution
 */
export declare class PlaySoundAction implements IRuntimeAction {
    private soundType;
    constructor(soundType: string);
    name: string;
    apply(_runtime: ITimerRuntime, _input: Subject<IRuntimeEvent>, _output: Subject<OutputEvent>): void;
}
