import { Accessibility } from '../../types'; import { TooltipBehaviorProps } from './tooltipBehavior'; /** * @specification * Adds attribute 'role=tooltip' to 'tooltip' slot. * Adds attribute 'aria-hidden=false' to 'tooltip' slot if 'open' property is true. Sets the attribute to 'true' otherwise. * Adds attribute 'aria-labelledby' based on the property 'aria-labelledby' to 'trigger' slot. * Triggers 'close' action with 'Escape' on 'trigger'. */ declare const tooltipAsLabelBehavior: Accessibility; export default tooltipAsLabelBehavior;