import * as React from "react"; import { DialogTrigger as FluentDialogTrigger, DialogSurface as FluentDialogSurface, DialogTitle as FluentDialogTitle, DialogActions as FluentDialogActions, type DialogProps as FluentDialogProps } from "@fluentui/react-components"; import { Button } from "./button"; export interface AlertDialogProps extends Omit { onOpenChange?: (open: boolean) => void; } declare const AlertDialog: React.ForwardRefExoticComponent>; type AlertDialogTriggerProps = React.ComponentProps & { asChild?: boolean; }; declare const AlertDialogTrigger: React.ForwardRefExoticComponent>; type AlertDialogContentProps = React.ComponentProps; declare const AlertDialogContent: React.ForwardRefExoticComponent>; declare const AlertDialogHeader: React.ForwardRefExoticComponent & React.RefAttributes>; type AlertDialogFooterProps = React.ComponentProps; declare const AlertDialogFooter: React.ForwardRefExoticComponent>; type AlertDialogTitleProps = React.ComponentProps; declare const AlertDialogTitle: React.ForwardRefExoticComponent>; declare const AlertDialogDescription: React.ForwardRefExoticComponent & React.RefAttributes>; type AlertDialogActionProps = React.ComponentProps & { asChild?: boolean; }; declare const AlertDialogAction: React.ForwardRefExoticComponent>; declare const AlertDialogCancel: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { AlertDialog, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, }; //# sourceMappingURL=alert-dialog.d.ts.map