import { Accessibility } from '../../types'; /** * @specification * Adds attribute 'aria-checked=true' based on the property 'active'. * Adds attribute 'aria-disabled=true' based on the property 'disabled'. * Adds role='menuitemcheckbox'. * Adds role 'presentation' to 'wrapper' slot. * Triggers 'performClick' action with 'Enter' or 'Spacebar' on 'root'. */ export declare const toolbarMenuItemCheckboxBehavior: Accessibility; declare type ToolbarMenuItemCheckboxBehaviorProps = { active?: boolean; disabled?: boolean; }; export {};