export interface ApplyCrewScheduleRequestBody { readonly builderCrewId: string; readonly scheduleId: string; readonly startingFromData: string; readonly type_operations: CrewScheduleTypeOperations; } export declare const enum CrewScheduleTypeOperations { Weekly = "WEEKLY_SCHEDULE", Rotating = "ROTATING_SCHEDULE" }