import { Accessibility } from '../../types'; import { GridRowBehaviorProps } from './gridRowBehavior'; /** * @specification * Adds role='row'. * Adds attribute 'data-is-focusable=true' to 'root' slot. * Adds attribute 'aria-selected=true' based on the property 'selected'. Based on this screen readers will recognize the selected state of the item. * Focus can be moved inside a child component with embeded inner FocusZone by pressing a specified key. * Provides arrow key navigation in horizontal direction. * Triggers 'performClick' action with 'Enter' or 'Spacebar' on 'root'. * Triggers 'unsetRowTabbable' action using 'shiftKey' + 'Tab' key on 'root'. * Applies 'gridCellBehavior' for 'cell' child component. */ export declare const gridRowNestedBehavior: Accessibility;