import type { Status } from '../utils/Status'; import type Time from 'src/data/Time'; export default interface TimerProps { /** Handler which gets executed on day press. Default = undefined */ dateForTime: string; startTime: Time; timeSelectionType: Status; onTimeSelected: Function; }