import { AlertProps } from './Alert.types'; /** * Alert component for displaying important messages to users. * Supports four severity levels (success, info, warning, error) with corresponding * visual styles and icons. Includes optional action button and close functionality. * Meets WCAG 2.1 Level AA accessibility standards. * * @example * // Basic success alert * * * // Error alert with description * * * // Info alert with action and close * handleUpdate()} * onClose={() => dismissAlert()} * /> */ export declare const Alert: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; //# sourceMappingURL=index.d.ts.map