import React from 'react'; import { ContainerComponentProps } from '../types/common'; type AlertType = "information" | "success" | "warning" | "error"; export interface AlertProps extends ContainerComponentProps { message: string; label?: string; description?: string; icon?: boolean; inline?: boolean; suppressed?: boolean; type?: AlertType; onPrimaryPress?: () => void; onSecondaryPress?: () => void; } declare const Alert: React.FC; export default Alert;