import React from 'react'; export declare type ShiftScheduleTime = { id: string; start: string; end: string; }; export declare type ShiftScheduleItem = { weekday: number; times: ShiftScheduleTime[]; }; export interface ShiftModalProps { open: boolean; value?: ShiftScheduleItem[]; onCancel: () => void; onOk: (value: ShiftScheduleItem[]) => void; } declare const ShiftModal: React.FC; export default ShiftModal;