import * as React from "react"; import { AlertDialog as AlertDialogPrimitive } from "radix-ui"; import { Button } from "@/components/ui/button"; declare function AlertDialog({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function AlertDialogTrigger({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function AlertDialogPortal({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function AlertDialogOverlay({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function AlertDialogContent({ className, size, ...props }: React.ComponentProps & { size?: "default" | "sm"; }): import("react/jsx-runtime").JSX.Element; declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function AlertDialogFooter({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function AlertDialogMedia({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function AlertDialogTitle({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function AlertDialogDescription({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function AlertDialogAction({ className, variant, size, ...props }: React.ComponentProps & Pick, "variant" | "size">): import("react/jsx-runtime").JSX.Element; declare function AlertDialogCancel({ className, variant, size, ...props }: React.ComponentProps & Pick, "variant" | "size">): import("react/jsx-runtime").JSX.Element; export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, }; //# sourceMappingURL=alert-dialog.d.ts.map