import { JSX } from 'react'; import { SxProps, Theme } from '@mui/material/styles'; import { FormFieldLayout, GenericValue, Item, GridEnrichedBySchemaColDef, TField } from '../../@types'; import { DialogType, OnEditModelType } from '../../context/APIWrapperContext'; interface SelectEditInputCellProps { field: string; id: number | string; value?: GenericValue; column: GridEnrichedBySchemaColDef; type: string; options?: Item[] | (() => Promise) | null; isIndexField: boolean; multiple?: boolean; onEditModel?: (p: OnEditModelType) => void; fieldsLayout?: FormFieldLayout[]; sx?: SxProps; setDialog: (x: Partial) => void; error?: boolean; helperText?: string; hasFocus?: boolean; } export default function SelectEditInputCell({ field, id, value, column, type, options, isIndexField, multiple, onEditModel, fieldsLayout, sx, setDialog, error, helperText, hasFocus, }: SelectEditInputCellProps): JSX.Element; export {}; //# sourceMappingURL=SelectEditInputCell.d.ts.map