import { Accessibility, AccessibilityAttributes } from '../../types'; /** * @description * Image is usually only visual representation and therefore is hidden from screen readers, unless 'alt' property is provided. * * @specification * Adds attribute 'aria-hidden=true', if there is no 'alt' property provided. */ export declare const imageBehavior: Accessibility; export declare type ImageBehaviorProps = { /** Alternative text. */ alt?: string; } & Pick;