import { ActionEvent, Parameter, ActionEventInterface, SubmitFormActionSubmitForm } from "./../index";
export interface SubmitFormActionInterface extends ActionEventInterface {
    submitForm?: SubmitFormActionSubmitForm;
}
export declare class SubmitFormAction extends ActionEvent implements SubmitFormActionInterface, Parameter {
    submitForm?: SubmitFormActionSubmitForm;
    constructor(data: any);
    static getSubmitFormDescription(): string;
    static fromJson(data: any): SubmitFormAction;
    toJson(): any;
    clone(): SubmitFormAction;
}
