import { SelectionAttachment, Parameter } from "./../index";
export interface ExtractToolboxAttachmentInterface {
    folderNameTemplate?: string;
    selection?: Array<SelectionAttachment>;
    singleFileAsZip?: boolean;
}
export declare class ExtractToolboxAttachment implements ExtractToolboxAttachmentInterface, Parameter {
    folderNameTemplate?: string;
    selection?: Array<SelectionAttachment>;
    singleFileAsZip?: boolean;
    constructor(data: any);
    static getFolderNameTemplateDefault(): string;
    static getFolderNameTemplateDescription(): string;
    static getSelectionDefault(): Array<SelectionAttachment>;
    static getSelectionDescription(): string;
    static getSingleFileAsZipDefault(): boolean;
    static getSingleFileAsZipDescription(): string;
    static fromJson(data: any): ExtractToolboxAttachment;
    toJson(): any;
    clone(): ExtractToolboxAttachment;
}
