///
import { IDateCellBase } from '../types';
interface IPanelCellProps {
cells: IDateCellBase[];
col: number;
onSelected: (val: Date) => void;
onHover?: (val: Date) => void;
popText?: string;
}
declare const PanelCell: React.FC;
export default PanelCell;