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