import { Parameter, Folder } from "./../index";
export interface FoldersDocumentInterface {
    folder?: Array<Folder>;
    initialFile?: string;
}
export declare class FoldersDocument implements FoldersDocumentInterface, Parameter {
    folder?: Array<Folder>;
    initialFile?: string;
    constructor(data: any);
    static getFolderDefault(): Array<Folder>;
    static getFolderDescription(): string;
    static getInitialFileDefault(): string;
    static getInitialFileDescription(): string;
    static fromJson(data: any): FoldersDocument;
    toJson(): any;
    clone(): FoldersDocument;
}
