import * as React from 'react'; import type { InputTimeProps } from '@planview/pv-uikit'; import type { CellEditorParams, GridRowData } from '../types'; export type GridEditorInputTimeProps = CellEditorParams & Omit & { icon?: React.JSX.Element; /** * Callback triggered after the value changes. **/ onChange?: (value: string) => void; /** * By default the editor will take the value from the cell, and manage all edits internally * to the editor. It will also update from the cell if a new value comes in during editing. * * If you want to customize this behavior, set this prop to true and provide an onChange * handler to take full control of value updates. */ controlled?: boolean; }; /** * Implementation of [Input time editor](https://design.planview.com/components/grid/grid-editors#input-time-editor) which enable users to edit values in the hh:mm format * * * `import { GridEditorInputTime } from '@planview/pv-grid'` */ export declare const GridEditorInputTime: ({ value, onCancel, onConfirm, onChange, controlled, ...rest }: GridEditorInputTimeProps) => React.JSX.Element; //# sourceMappingURL=input-time.d.ts.map