import { Accessibility } from '../../types'; /** * @specification * Adds attribute 'aria-disabled=true' based on the property 'disabled'. This can be overriden by providing 'aria-disabled' property directly to the component. * Triggers 'clear' action with 'Escape' on 'input'. */ declare const inputBehavior: Accessibility; export default inputBehavior; declare type InputBehaviorProps = { disabled?: boolean; };