import { AdaptableSharedEntityConfig } from '../../../AdaptableState/TeamSharingState'; import * as React from 'react'; export interface AdaptablePopupTeamSharingProps { showPopup: boolean; header: string; onClose: () => void; onConfirm: (config: AdaptableSharedEntityConfig) => void; } export declare const AdaptablePopupTeamSharing: (props: AdaptablePopupTeamSharingProps) => React.JSX.Element;