import React from 'react';
import { AlertProps } from './Alert.types';
/**
 * Alerts are components used to show relevant info on the interface.
 */
declare const Alert: React.FC<AlertProps>;
export default Alert;
