import { Parameter } from "./../index";
export interface ClearInterface {
}
export declare class Clear implements ClearInterface, Parameter {
    constructor(data: any);
    static fromJson(data: any): Clear;
    toJson(): any;
    clone(): Clear;
}
