import { Dayjs } from 'dayjs'; import { Cell, IsSameTime, Mode } from '../interface'; interface CellClassNameProps { prefixCls: string; value?: Dayjs; rangeValues?: Array; isSameTime: IsSameTime; mode?: Mode; } export default function useCellClassName(props: CellClassNameProps): { getCellClassName: (cellData: Cell, disabled: boolean) => (string | { [x: string]: boolean | undefined; } | undefined)[]; }; export {};