import * as React from 'react'; import { 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 {} }