import React from 'react'; import { TooltipProps } from '../Tooltip'; type TooltipTabstopProps = Omit & { children: React.ReactNode; tooltip: React.ReactNode; } & React.HTMLAttributes; /** * The button's sole purpose is to provide an interactive tabstop for a tooltip. aria-disabled is used to: * - Allow the button to be keyboard focusable * - Inform AT users that clicking the button does not perform any action * - Is presented as a focusable control to trigger the associated tooltip */ declare function TooltipTabstop({ children, className, tooltip, variant, association, show, placement, portal, hideElementOnHidden, ...buttonProps }: TooltipTabstopProps): React.JSX.Element; declare namespace TooltipTabstop { var displayName: string; } export default TooltipTabstop;