import { Blacken, Sanitize, Parameter } from "./../index";
export interface ToolboxRedactRedactInterface {
    blacken?: Blacken;
    sanitize?: Sanitize;
}
export declare class ToolboxRedactRedact implements ToolboxRedactRedactInterface, Parameter {
    blacken?: Blacken;
    sanitize?: Sanitize;
    constructor(data: any);
    static getBlackenDescription(): string;
    static getSanitizeDescription(): string;
    static fromJson(data: any): ToolboxRedactRedact;
    toJson(): any;
    clone(): ToolboxRedactRedact;
}
