import { Accessibility } from '../../types'; import { CardBehaviorProps } from './cardBehavior'; /** * @description * Behavior for a focusable card component * @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 'performClick' action with 'Enter' or 'Spacebar' on 'root'. */ export declare const cardFocusableBehavior: Accessibility;