import { AlertDialog as AlertDialogPrimitive } from 'radix-ui'; import { ButtonProps } from '../button'; import { AlertDialogStyles } from './alert-dialog.css'; import * as React from 'react'; interface AlertDialogProps extends React.ComponentPropsWithoutRef, AlertDialogStyles { } declare const AlertDialog: React.FC; declare const AlertDialogTrigger: React.ForwardRefExoticComponent>; declare const AlertDialogPortal: React.FC; declare const AlertDialogContent: React.ForwardRefExoticComponent, "ref"> & AlertDialogStyles & 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 AlertDialogDivider: { ({ className, ...props }: React.HTMLAttributes): import("react/jsx-runtime").JSX.Element; displayName: string; }; interface AlertDialogActionProps extends React.ComponentPropsWithoutRef, Pick { } declare const AlertDialogAction: React.ForwardRefExoticComponent>; interface AlertDialogCancelProps extends React.ComponentPropsWithoutRef, Pick { } declare const AlertDialogCancel: React.ForwardRefExoticComponent>; export { AlertDialog, AlertDialogPortal, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, AlertDialogDivider, type AlertDialogProps, }; //# sourceMappingURL=alert-dialog.d.ts.map