import { Parameter, RelativeThreeDViewOperation, AnnotationSelection } from "./../index";
export interface GoTo3DViewActionGoTo3DViewInterface {
    annotation: AnnotationSelection;
    index?: number;
    name?: string;
    relative?: RelativeThreeDViewOperation;
}
export declare class GoTo3DViewActionGoTo3DView implements GoTo3DViewActionGoTo3DViewInterface, Parameter {
    annotation: AnnotationSelection;
    index?: number;
    name?: string;
    relative?: RelativeThreeDViewOperation;
    constructor(data: any);
    static getAnnotationDescription(): string;
    static getIndexDefault(): number;
    static getIndexDescription(): string;
    static getIndexMin(): number;
    static getNameDefault(): string;
    static getNameDescription(): string;
    static getRelativeDefault(): RelativeThreeDViewOperation;
    static getRelativeDescription(): string;
    static fromJson(data: any): GoTo3DViewActionGoTo3DView;
    toJson(): any;
    clone(): GoTo3DViewActionGoTo3DView;
}
