import { Accessibility } from '../../types'; /** * @description * Behavior for a card component - semantic grouping of objects * @specification * Adds role='group'. * Adds attribute 'aria-disabled=true' based on the property 'disabled'. */ export declare const cardBehavior: Accessibility; export declare type CardBehaviorProps = { /** A card can show it is currently unable to be interacted with. */ disabled?: boolean; };