import { Parameter, Attachment } from "./../index";
export interface AttachmentsDocumentInterface {
    attachment?: Array<Attachment>;
}
export declare class AttachmentsDocument implements AttachmentsDocumentInterface, Parameter {
    attachment?: Array<Attachment>;
    constructor(data: any);
    static getAttachmentDefault(): Array<Attachment>;
    static getAttachmentDescription(): string;
    static fromJson(data: any): AttachmentsDocument;
    toJson(): any;
    clone(): AttachmentsDocument;
}
