/// <reference types="react" />
import { DatasetItem } from '../../../utils/synapseTypes';
export declare type DatasetItemsEditorProps = {
    entityId: string;
    onSave?: () => void;
    onClose?: () => void;
};
export declare type DatasetItemsEditorTableData = DatasetItem & {
    isSelected: boolean;
    setSelected: (value: boolean) => void;
};
export declare function DatasetItemsEditor(props: DatasetItemsEditorProps): JSX.Element;
