import * as React from 'react'; import type { CellEditorParams, GridRowData } from '../types'; import type { InputProps } from '@planview/pv-uikit'; export type GridEditorInputProps = CellEditorParams & Pick & { /** * 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; }; export declare const GridEditorInput: ({ value, onCancel, onConfirm, onChange, controlled, ...rest }: GridEditorInputProps) => React.JSX.Element; //# sourceMappingURL=input.d.ts.map