///
import { PopupType, PopupActionType } from '../../build/Providers/shared/Popup/types';
export interface TooltipInteractiveProps extends PopupType {
interactive?: boolean;
actions?: PopupActionType;
}
declare const TooltipInteractive: {
(props: TooltipInteractiveProps): JSX.Element;
propTypes: {
actions: import("prop-types").Requireable;
interactive: import("prop-types").Requireable;
};
defaultProps: {
interactive: boolean;
};
};
export default TooltipInteractive;