import { Accessibility } from '../../types'; /** * @description * Loader is usually an element that displays the progress status for a task that take a long time or consists of several steps. * Adds attribute 'aria-labelledby' on 'root' when loader has 'tabIndex' prop. This can be overriden by providing 'aria-labelledby' or 'aria-label' property directly to the component. * * @specification * Adds role 'progressbar' to 'root' slot. */ export declare const loaderBehavior: Accessibility; export declare type LoaderBehaviorProps = { /** id of the loader label element. */ labelId?: string; };