import { RetryConfigDto, WorkflowActionDto } from './create-schedule.dto'; export declare class UpdateScheduleDto { id: number; workflow_id?: number; workflow_name?: string; name?: string; description?: string; cron_expression?: string; timezone?: string; start_date?: string; end_date?: string; max_executions?: number; schedule_status?: string; retry_config?: RetryConfigDto; actions?: WorkflowActionDto[]; metadata?: Record; is_enabled?: boolean; status?: string; }