import { IChangeImageProps } from '../interfaces/IImageProps';
import { Action } from './Action';
export declare enum EImageActions {
    changeParamsImage = "changeParamsImage"
}
export declare class ChangeParamsImageAction extends Action<IChangeImageProps> {
    readonly type = EImageActions.changeParamsImage;
}
export declare type ImageActions = ChangeParamsImageAction;
