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): React.JSX.Element; displayName: string; }; declare const AlertDialogFooter: { ({ className, ...props }: React.HTMLAttributes): React.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, HTMLButtonElement>, "ref">, "onClick"> & import("class-variance-authority").VariantProps<(props?: ({ variant?: "link" | "primary" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined; size?: "sm" | "md" | "lg" | "icon" | null | undefined; } & import("../../utils/cva").ClassProp) | undefined) => string> & { asChild?: boolean; icon?: React.ReactNode; loading?: boolean; tooltip?: React.ReactNode; onClick?(e: React.MouseEvent): void | Promise; } & React.RefAttributes, "ref"> & React.RefAttributes>; declare const AlertDialogCancel: React.ForwardRefExoticComponent, HTMLButtonElement>, "ref">, "onClick"> & import("class-variance-authority").VariantProps<(props?: ({ variant?: "link" | "primary" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined; size?: "sm" | "md" | "lg" | "icon" | null | undefined; } & import("../../utils/cva").ClassProp) | undefined) => string> & { asChild?: boolean; icon?: React.ReactNode; loading?: boolean; tooltip?: React.ReactNode; onClick?(e: React.MouseEvent): void | Promise; } & React.RefAttributes, "ref"> & React.RefAttributes>; export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, };