import { IChangeVideoProps } from '../interfaces/IVideoProps';
import { Action } from './Action';
export declare enum EVideoActions {
    changeParamsVideo = "changeParamsVideo"
}
export declare class ChangeParamsVideoAction extends Action<IChangeVideoProps> {
    readonly type = EVideoActions.changeParamsVideo;
}
export declare type VideoActions = ChangeParamsVideoAction;
