import { Accessibility } from '../../types'; import { CardBehaviorProps } from './cardBehavior'; /** * @description * Behavior for a card component with multiple focusable child elements. * @specification * Adds role='group'. * Adds attribute 'aria-disabled=true' based on the property 'disabled'. * Adds attribute 'tabIndex=0' to 'root' slot. * Adds attribute 'data-is-focusable=true' to 'root' slot. * Triggers 'focusCard' action with 'Escape' on 'root'. */ export declare const cardChildrenFocusableBehavior: Accessibility;