import { HTMLAttributes } from 'react';
export interface Props extends HTMLAttributes {
variant?: 'success' | "warning" | "danger" | "info";
title: string;
subtitle?: string;
text: string;
confirmationButton: string;
cancelButton?: boolean;
}
export declare const Alert: ({ variant, title, subtitle, text, confirmationButton, cancelButton, ...props }: Props) => JSX.Element;