import { Accessibility } from '../../types'; /** * @description * Implements ARIA Radio Group design pattern. * @specification * Adds role='radiogroup'. This allows screen readers to handle the component as a radio group. * Triggers 'nextItem' action with 'ArrowDown' or 'ArrowRight' on 'root'. * Triggers 'prevItem' action with 'ArrowUp' or 'ArrowLeft' on 'root'. */ export declare const radioGroupBehavior: Accessibility; export declare type RadioGroupBehaviorProps = never;