import { Accessibility } from '../../types'; /** * @description * Defines a behavior "gridHeaderRowBehavior" or "gridRowNestedBehavior" based on "header" property. */ export declare const gridRowBehavior: Accessibility; export declare type GridRowBehaviorProps = { /** Indicates if a table row is header. */ header?: boolean; /** Indicated is table row is selected. */ selected?: boolean; };