import { Context } from 'ripple'; import { DateValue } from '@zag-js/date-picker'; export interface DatePickerTableCellPropsContext { value: DateValue; disabled?: boolean | undefined; visibleRange?: { start: DateValue; end: DateValue; } | undefined; columns?: number | undefined; } export declare const DatePickerTableCellPropsContext: Context; export declare const useDatePickerTableCellPropsContext: () => DatePickerTableCellPropsContext;