import { OutputAction } from '../OutputAction';
export declare enum TimerState {
    STOPPED = "STOPPED",
    RUNNING_COUNTDOWN = "RUNNING_COUNTDOWN",
    RUNNING_COUNTUP = "RUNNING_COUNTUP",
    PAUSED = "PAUSED"
}
export declare class SetTimerStateAction extends OutputAction {
    state: TimerState;
    name: string;
    constructor(state: TimerState, name: string);
    getData(): {
        name: string;
        state: TimerState;
    };
}
