synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
18 lines • 755 B
TypeScript
import React from 'react';
import { Reference } from '@sage-bionetworks/synapse-types';
import { HelpPopoverProps } from '../HelpPopover/HelpPopover';
import { EntityFinderProps } from './EntityFinder';
export declare const UNSAVED_CHANGES = "Unsaved Changes";
export type EntityFinderModalProps = {
configuration: Omit<EntityFinderProps, 'onSelectedChange'>;
show: boolean;
title: string;
titleHelpPopoverProps?: HelpPopoverProps;
onConfirm: (selected: Reference[]) => void;
confirmButtonCopy: string;
onCancel: () => void;
promptCopy?: string;
initialSelected?: Reference[];
};
export declare const EntityFinderModal: (props: EntityFinderModalProps) => React.ReactNode;
//# sourceMappingURL=EntityFinderModal.d.ts.map