export declare class CreateTaskDto {
    tenantCode: string;
    taskType: string;
    name?: string;
    input: Record<string, any>;
}
