import React from 'react'; import { PopupType, PopupActionType } from '../../build/Providers/shared/Popup/types'; declare type TooltipV2Attributes = React.ComponentPropsWithoutRef<'div'>; export interface TooltipV2Props extends Omit, PopupType { /** * Set the actions inside the component when `interactive` is `true`, each of these action has predefined style and position */ actions?: PopupActionType; /** * **DEPRECATED (Use `Popover` component instead)** Set the component with alternative style and has option to set an `actions` */ interactive?: boolean; /** * **DEPRECATED (Use `target` instead)** Set the target ref where the component should be placed */ targetRef?: object; } export {};