/// <reference types="react" />
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<IPanelCellProps>;
export default PanelCell;
