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_NOT_EXECUTE_USECASE__"; export declare class WillNotExecutedPayload implements Payload { type: string; /** * a array for argument of the useCase */ args: Array; constructor({ args }: { args?: Array; }); } export declare function isWillNotExecutedPayload(v: Payload): v is WillNotExecutedPayload;