import { TaskType } from "./task-type"; export declare class CreateTaskRequestDto { integrationName: string; type: TaskType; payload: string; notInQueue: boolean; targetAwsRegion: string; forwardToQueue?: boolean; }