import * as React from 'react'; import { AlertDialog } from '../AlertDialog'; import type { alert } from './types'; type AlertDialogContentProps = React.ComponentProps & { className?: string; onClose: () => void; } & alert; export declare const Alert: ({ title, size, theme, description, onAction, cancelActionText, confirmActionText, onClose, confirmElement, cancelElement, ...remainingProps }: AlertDialogContentProps) => React.JSX.Element; export {};