import { SetOCGStateActionSetLayerState, ActionEvent, Parameter, ActionEventInterface } from "./../index";
export interface SetOCGStateActionInterface extends ActionEventInterface {
    setLayerState?: SetOCGStateActionSetLayerState;
}
export declare class SetOCGStateAction extends ActionEvent implements SetOCGStateActionInterface, Parameter {
    setLayerState?: SetOCGStateActionSetLayerState;
    constructor(data: any);
    static getSetLayerStateDescription(): string;
    static fromJson(data: any): SetOCGStateAction;
    toJson(): any;
    clone(): SetOCGStateAction;
}
