export interface IDeleteTaskGateway { execute(id: string): Promise; } export declare const DeleteTaskGateway: import("@webiny/di").Abstraction; export declare namespace DeleteTaskGateway { type Interface = IDeleteTaskGateway; } export interface IDeleteTaskUseCase { execute(id: string): Promise; } export declare const DeleteTaskUseCase: import("@webiny/di").Abstraction; export declare namespace DeleteTaskUseCase { type Interface = IDeleteTaskUseCase; }