import { Parameter } from "./index";
export interface DLQCleanUpResponseInterface {
    removed?: number;
}
export declare class DLQCleanUpResponse implements DLQCleanUpResponseInterface, Parameter {
    removed?: number;
    constructor(data: any);
    static getRemovedDefault(): number;
    static getRemovedDescription(): string;
    static fromJson(data: any): DLQCleanUpResponse;
    toJson(): any;
    clone(): DLQCleanUpResponse;
}
