import * as React from 'react'; import { BaseUIComponentProps } from "../../base-ui-copy/utils/types.js"; import { useDayCellDropTarget } from "./useDayCellDropTarget.js"; export declare const CalendarGridDayCell: React.ForwardRefExoticComponent & React.RefAttributes>; export declare namespace CalendarGridDayCell { interface State {} interface Props extends BaseUIComponentProps<'div', State>, useDayCellDropTarget.Parameters { /** * Whether to lock the surface type of the created event placeholder. * When true, the surfaceType will not be updated when editing the placeholder. */ lockSurfaceType?: boolean; } }