import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog'; import * as React from 'react'; /** * AlertDialog primitives for critical confirmation dialogs. */ declare const AlertDialog: React.FC; /** * Trigger that opens the dialog. */ declare const AlertDialogTrigger: React.ForwardRefExoticComponent>; /** * Renders the dialog content in a portal to escape the parent container. */ declare const AlertDialogPortal: React.FC; /** * AlertDialogOverlay - Background overlay for the alert dialog. * @returns {JSX.Element} The rendered AlertDialogOverlay component. */ declare const AlertDialogOverlay: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; /** * AlertDialogContent - Modal content container for the alert dialog. * @returns {JSX.Element} The rendered AlertDialogContent component. */ declare const AlertDialogContent: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; /** * AlertDialogHeader - Container for the dialog header. * @returns {JSX.Element} The rendered AlertDialogHeader component. */ declare const AlertDialogHeader: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** * AlertDialogFooter - Container for footer actions. * @returns {JSX.Element} The rendered AlertDialogFooter component. */ declare const AlertDialogFooter: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** * AlertDialogTitle - Accessible title for the alert dialog. * @returns {JSX.Element} The rendered AlertDialogTitle component. */ declare const AlertDialogTitle: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; /** * AlertDialogDescription - Additional descriptive text. * @returns {JSX.Element} The rendered AlertDialogDescription component. */ declare const AlertDialogDescription: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; /** * AlertDialogAction - Confirm action button. * @returns {JSX.Element} The rendered AlertDialogAction component. */ declare const AlertDialogAction: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; /** * AlertDialogCancel - Cancel action button. * @returns {JSX.Element} The rendered AlertDialogCancel component. */ declare const AlertDialogCancel: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, }; //# sourceMappingURL=alert-dialog.d.ts.map