/// <reference types="react" />
import { Reference } from '../../utils/synapseTypes';
import { EntityFinderProps } from './EntityFinder';
export declare type EntityFinderModalProps = {
    configuration: Omit<EntityFinderProps, 'onSelectedChange'>;
    show: boolean;
    onClose: () => void;
    title: string;
    onConfirm: (selected: Reference[]) => void;
    confirmButtonCopy: string;
    onCancel: () => void;
};
export declare const EntityFinderModal: (props: EntityFinderModalProps) => JSX.Element;
