import { type CellInputProps } from '@deephaven/grid'; import './CellDropdownField.scss'; export type CellDropdownFieldProps = CellInputProps & { /** The list of allowed values to display in the dropdown. */ options: string[]; }; /** * A dropdown cell editor for use in an editable grid cell. * Renders a Picker component in place of the standard textarea used by CellInputField. * Intended to be supplied as the `renderCellInputComponent` prop on Grid when the * column restriction requires a constrained set of values. */ export declare function CellDropdownField({ options, className, disabled, value: propsValue, onChange, onCancel, onDone, style, }: CellDropdownFieldProps): JSX.Element; export default CellDropdownField; //# sourceMappingURL=CellDropdownField.d.ts.map