import { Payload } from "./Payload"; /** * XXX: This is exported for an unit testing. * DO NOT USE THIS in your application. */ export declare const TYPE = "__ALMIN_WILL_EXECUTED_EACH_USECASE__"; export declare class WillExecutedPayload implements Payload { type: string; /** * a array for argument of the useCase */ args: Array; constructor({ args }: { args?: Array; }); } export declare function isWillExecutedPayload(v: Payload): v is WillExecutedPayload;