import { ActionEvent, Parameter, ActionEventInterface, ResetFormActionResetForm } from "./../index";
export interface ResetFormActionInterface extends ActionEventInterface {
    resetForm?: ResetFormActionResetForm;
}
export declare class ResetFormAction extends ActionEvent implements ResetFormActionInterface, Parameter {
    resetForm?: ResetFormActionResetForm;
    constructor(data: any);
    static getResetFormDescription(): string;
    static fromJson(data: any): ResetFormAction;
    toJson(): any;
    clone(): ResetFormAction;
}
