import { PropsWithChildren } from 'react';
interface Props {
    id?: string;
    type?: string;
    outline?: boolean;
    closeable?: boolean;
    className?: string;
    onClose?: () => void;
}
declare const Alert: ({ id, type, outline, closeable, className, children, onClose }: PropsWithChildren<Props>) => import("react/jsx-runtime").JSX.Element;
export default Alert;
