import { Accessibility } from '../../types'; /** * @specification * Adds role 'alert' to 'body' slot. * Adds attribute 'aria-live=polite' to 'body' slot. */ declare const alertWarningBehavior: Accessibility; export default alertWarningBehavior; export declare type AlertProps = { /** An alert may be formatted to display a danger message. */ danger?: boolean; /** An alert may be formatted to display a warning message. */ warning?: boolean; /** Id of the alert body element. */ bodyId?: string; };