import React from 'react'; import { ColorVariants } from '../../utils/types'; import { NotificationType } from '../notification/Notification'; export interface AlertProps { classNames?: { card?: string; closeBtn?: string; closeSvg?: string; content?: string; contentWrapper?: string; svgWrapper?: string; title?: string; wrapper?: string; }; /** * Must be a `HEX` value with #. * @example #010101 */ color?: ColorVariants; content: React.ReactNode; icon?: React.ReactNode; onClose?: () => void; title: React.ReactNode; type?: NotificationType; withCloseButton?: boolean; } declare const Alert: React.FunctionComponent; export { Alert };