import { Accessibility } from '../../types'; /** * @description * Behavior for a datepicker calendar grid. * @specification * Adds attribute 'aria-selected' based on the property 'selected' to 'root' slot. */ export declare const datepickerCalendarCellBehavior: Accessibility; export declare type DatepickerCalendarCellBehaviorProps = { /** Cell can be selected. */ selected: boolean; };