import { Parameter, Annotation } from "./../index";
export interface AnnotationsDocumentInterface {
    annotation?: Array<Annotation>;
}
export declare class AnnotationsDocument implements AnnotationsDocumentInterface, Parameter {
    annotation?: Array<Annotation>;
    constructor(data: any);
    static getAnnotationDefault(): Array<Annotation>;
    static getAnnotationDescription(): string;
    static fromJson(data: any): AnnotationsDocument;
    toJson(): any;
    clone(): AnnotationsDocument;
}
