import * as React from 'react'; import type { BaseUIComponentProps } from "../../base-ui-copy/utils/types.js"; import { useTimeDropTarget } from "./useTimeDropTarget.js"; export declare const CalendarGridTimeColumn: React.ForwardRefExoticComponent & React.RefAttributes>; export declare namespace CalendarGridTimeColumn { interface State { /** * Whether the column represents the current day. */ current: boolean; } interface Props extends BaseUIComponentProps<'div', State>, useTimeDropTarget.Parameters { /** * First displayed minute of the day, as an offset from midnight. * Derived from the view's whole-hour window so it stays aligned with the * grid rows even on DST-transition days. * @default 0 */ dayStartMinute?: number; /** * Last displayed minute of the day, as an offset from midnight. * Derived from the view's whole-hour window so it stays aligned with the * grid rows even on DST-transition days. * @default 1440 */ dayEndMinute?: number; } }