import { Parameter, AnnotationSelection } from "./../index";
export interface HideActionHideAnnotationInterface {
    annotation?: Array<AnnotationSelection>;
    hide?: boolean;
}
export declare class HideActionHideAnnotation implements HideActionHideAnnotationInterface, Parameter {
    annotation?: Array<AnnotationSelection>;
    hide?: boolean;
    constructor(data: any);
    static getAnnotationDefault(): Array<AnnotationSelection>;
    static getAnnotationDescription(): string;
    static getHideDefault(): boolean;
    static getHideDescription(): string;
    static fromJson(data: any): HideActionHideAnnotation;
    toJson(): any;
    clone(): HideActionHideAnnotation;
}
