import { Parameter } from "./index";
export interface DocumentsBodyInterface {
    filedata?: Blob;
}
export declare class DocumentsBody implements DocumentsBodyInterface, Parameter {
    filedata?: Blob;
    constructor(data: any);
    static getFiledataDescription(): string;
    static fromJson(data: any): DocumentsBody;
    toJson(): any;
    clone(): DocumentsBody;
}
