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'. */ export declare const inputBehavior: Accessibility; export declare type InputBehaviorProps = { disabled?: boolean; required?: boolean; error?: boolean; };