import { Accessibility } from '../../types'; /** * @description * Uses `alertWarningBehavior` for 'danger' and 'warning' variants. */ export declare const alertBehavior: Accessibility; export declare type AlertBehaviorProps = { warning?: boolean; danger?: boolean; bodyId?: string; };