import { default as React } from 'react'; export type CellDatePickerVariant = 'cell' | 'fx'; /** * Fileverse UI date picker shown below the in-cell editor when editing a date cell * (same general area as formula hint). Inserts canonical base date format (with time * preserved when the current base value includes time). */ declare const CellDatePicker: React.FC<{ variant?: CellDatePickerVariant; }>; export default CellDatePicker;