import { CustomInputProps } from "../../../types"; type Props = { value: string; onChange: (value: string) => void; disabled: boolean; onRemoveClick: () => void; inputValue: string; id: string; scalarType: string; customInput?: React.ReactElement; }; declare const ScalarArrayFieldItem: ({ value, onChange, disabled, onRemoveClick, id, scalarType, customInput, }: Props) => import("react/jsx-runtime").JSX.Element; export default ScalarArrayFieldItem; //# sourceMappingURL=ScalarArrayFieldItem.d.ts.map