/** * Close current modal. */ export declare const modalCloseAction: { id: string; label: string; handler(): void; }; /** * Trigger a submit on the form in the current modal context. */ export declare const modalSubmitFormAction: { id: string; label: string; handler(): Promise; afterHandle(context: import("../executors").ActionContextWithResponse): Promise; };