///
import { RefProps, DelayProps } from './Popup';
export interface PopupTriggerProps {
show?: boolean;
spacing?: number;
placement?: string;
delay?: DelayProps;
targetRef?: RefProps;
children?: Function;
trigger?: string;
zIndex?: number;
onMouseEnter?: Function;
onMouseLeave?: Function;
onClick?: Function;
onClickOutside?: Function;
}
declare const PopupTrigger: {
(props: PopupTriggerProps): JSX.Element;
propTypes: {
children: import("prop-types").Requireable<(...args: any[]) => any>;
delay: import("prop-types").Requireable