import React from 'react';
import './alert.css';
export interface AlertProps {
    handleClose: () => void;
    children?: React.ReactNode;
    variant?: 'error' | 'success' | 'info' | 'warning';
}
export declare const Alert: ({ handleClose, variant, children }: AlertProps) => JSX.Element;
