/** * DTO for task response. * Used to return the ID of a created task. */ export declare class TaskResponseDto { /** * The ID of the task that was created */ taskId: string; }