import { BaseToolbox, BaseToolboxInterface, ToolboxRedactRedact, Parameter } from "./../index";
export interface ToolboxRedactInterface extends BaseToolboxInterface {
    redact?: ToolboxRedactRedact;
}
export declare class ToolboxRedact extends BaseToolbox implements ToolboxRedactInterface, Parameter {
    redact?: ToolboxRedactRedact;
    constructor(data: any);
    static getRedactDescription(): string;
    static fromJson(data: any): ToolboxRedact;
    toJson(): any;
    clone(): ToolboxRedact;
}
