import { BaseToolbox, Billing, Parameter, PdfPassword, Settings } from "./../index";
export interface ToolboxOperationInterface {
    billing?: Billing;
    password?: PdfPassword;
    settings?: Settings;
    toolbox?: Array<BaseToolbox>;
}
export declare class ToolboxOperation implements ToolboxOperationInterface, Parameter {
    billing?: Billing;
    password?: PdfPassword;
    settings?: Settings;
    toolbox?: Array<BaseToolbox>;
    constructor(data: any);
    static getBillingDescription(): string;
    static getPasswordDescription(): string;
    static getSettingsDescription(): string;
    static getToolboxDefault(): Array<BaseToolbox>;
    static getToolboxDescription(): string;
    static fromJson(data: any): ToolboxOperation;
    toJson(): any;
    clone(): ToolboxOperation;
}
