import { TextFieldProps } from '@mui/material';
import { ColumnTypeEnum } from '@sage-bionetworks/synapse-types';
export type MultiValueFieldProps<T = unknown> = {
    value?: T[] | null;
    onChange: (newValue: T[] | null) => void;
    columnType: ColumnTypeEnum;
    TextFieldProps?: Omit<TextFieldProps, 'value' | 'onChange'>;
};
export default function MultiValueField<T = unknown>(props: MultiValueFieldProps<T>): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=MultiValueField.d.ts.map