import * as React from 'react'; import { ITimeSlot } from '../Timeslot/Timeslot'; import { IWeekSlot } from '../Weekslot/Weekslot'; export interface ITimeslotGroup { id?: string; timeslot?: ITimeSlot[]; timeslotWeek?: string[]; weekslot?: IWeekSlot[]; busy?: boolean; } export interface ITimeslotGroupProps { busy?: boolean; children: React.ReactElement[] | React.ReactElement; } export interface ITimeslotGroupState { busy?: boolean; children: React.ReactElement[] | React.ReactElement; } export default class TimeslotGroup extends React.Component { constructor(props: ITimeslotGroupProps); static GetTimeSlotQuarters(): ITimeSlot[]; render(): React.JSX.Element; }