import * as React from "react"; import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog"; declare const AlertDialog: React.FC; declare const AlertDialogTrigger: React.ForwardRefExoticComponent>; declare const AlertDialogPortal: React.FC; declare const AlertDialogOverlay: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const AlertDialogContent: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const AlertDialogHeader: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const AlertDialogFooter: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const AlertDialogTitle: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const AlertDialogDescription: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const AlertDialogAction: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const AlertDialogCancel: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, };