import { CellRenderedProps } from '../../types';
import { JSX } from 'react';
interface CellProps {
    day: Date;
    start: Date;
    height: number;
    end: Date;
    resourceKey: string;
    resourceVal: string | number;
    cellRenderer?(props: CellRenderedProps): JSX.Element;
    children?: JSX.Element;
}
declare const Cell: ({ day, start, end, resourceKey, resourceVal, cellRenderer, height, children, }: CellProps) => import("react/jsx-runtime").JSX.Element;
export default Cell;
