import { Accessibility } from '../../types'; /** * @description * Adds attribute 'tabIndex=0' to 'root' slot if 'active' property and 'navigation' property is true. Sets the attribute to '-1' otherwise. * @specification * Adds attribute 'role=tabpanel' based on the property 'navigation' to 'root' slot. * Adds attribute 'aria-hidden=false' to 'root' slot if 'active' property is true. Sets the attribute to 'true' otherwise. * Triggers 'arrowKeysNavigationStopPropagation' action with 'ArrowRight' or 'ArrowLeft' on 'root'. */ export declare const carouselItemBehavior: Accessibility; export declare type CarouselItemBehaviorProps = { /** If item is visible in the carousel. */ active?: boolean; navigation?: boolean; };