import type { GenerateConfig } from '../Generate'; import type { NullableDateType, Locale } from '../OcPicker.types'; declare type UseCellPropsArgs = { generateConfig: GenerateConfig; value?: NullableDateType; isSameCell: (current: NullableDateType, target: NullableDateType) => boolean; today?: NullableDateType; locale: Locale; }; export default function useCellProps({ today, value, isSameCell, locale, generateConfig, }: UseCellPropsArgs): (currentDate: DateType) => { buttonProps: { tabIndex: number; 'aria-label': string; }; isCellFocused: boolean; }; export {};