import { PureComponent } from 'react'; import { DatePickers } from '../common/types'; export interface ITimeCellProps { onSelect: (val: any) => void; cells: DatePickers.ITimeCellValue[][]; } export default class TimeCell extends PureComponent { static defaultProps: { onSelect: (...args: any[]) => void; }; onClickCell: (cell: any) => void; getTbody(): JSX.Element[]; render(): JSX.Element; }