import React from 'react'; import { FieldBySchemaProps } from '../../../@types'; /** * Choice/list picker built on MUI Autocomplete. * * `options` must be objects, and the current form `value` must match them: a * single option object, or (when `multiple`) an array of option objects. The * option shape is defined by `optionIdKey`/`optionLabelKey` (defaults * `'id'`/`'label'`); it is NOT raw values/strings. Seed forms with * populateValues() so values are already objects in the same format as options. */ export default function AutocompleteFieldBySchema({ fieldKey, index, name, schema, control, errors, optionIdKey, optionLabelKey, options: optionsByProps, isSemaphoric, sx, onValueChange, autoFocus, disabled, autoComplete: _, multiple, ...other }: FieldBySchemaProps): React.JSX.Element | undefined; //# sourceMappingURL=AutocompleteFieldBySchema.d.ts.map