import * as React from 'react'; import type { DatePickerProps } from '@planview/pv-uikit'; import type { CellEditorParams, GridRowData } from '../types'; import type { IconProps } from '@planview/pv-icons'; export type GridEditorDatePickerProps = Omit, 'value'> & Omit & { /** Input icon. Defaults to no icon. */ icon?: React.ReactElement | null; }; export declare const GridEditorDatePicker: ({ value, onCancel, onConfirm, icon, ...rest }: GridEditorDatePickerProps) => React.JSX.Element; //# sourceMappingURL=datepicker.d.ts.map