import React from 'react'; export declare type Severity = 'info' | 'alert' | 'warning' | 'success' | 'brand'; export interface AlertProps extends React.HTMLAttributes { children?: React.ReactNode; severity?: Severity; inline?: boolean; hasRoundedCorners?: boolean; /** * if present it shows the "x" icon */ onRequestClose?(event: React.MouseEvent | React.KeyboardEvent): void; } declare const Alert: ({ severity, inline, onRequestClose, children, hasRoundedCorners, ...rest }: AlertProps) => JSX.Element; export default Alert;