import React from 'react';
import { type TriggerProps } from '@atlaskit/popup';
import { type ProfileCardTriggerProps } from './types';
export declare const PopupTrigger: <T>(props: Partial<TriggerProps> & {
    showProfilecard: () => void;
    hideProfilecard: () => void;
} & Pick<ProfileCardTriggerProps<T>, "ariaLabelledBy" | "trigger" | "children"> & React.RefAttributes<HTMLSpanElement>) => JSX.Element;
