import { AlertDialog as AlertDialogPrimitive } from '@base-ui/react/alert-dialog'; import { Button } from '@components/common/ui/Button.js'; import * as React from 'react'; declare function AlertDialog({ ...props }: AlertDialogPrimitive.Root.Props): React.JSX.Element; declare function AlertDialogTrigger({ ...props }: AlertDialogPrimitive.Trigger.Props): React.JSX.Element; declare function AlertDialogPortal({ ...props }: AlertDialogPrimitive.Portal.Props): React.JSX.Element; declare function AlertDialogOverlay({ className, ...props }: AlertDialogPrimitive.Backdrop.Props): React.JSX.Element; declare function AlertDialogContent({ className, size, ...props }: AlertDialogPrimitive.Popup.Props & { size?: 'default' | 'sm'; }): React.JSX.Element; declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function AlertDialogFooter({ className, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function AlertDialogMedia({ className, ...props }: React.ComponentProps<'div'>): React.JSX.Element; declare function AlertDialogTitle({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function AlertDialogDescription({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function AlertDialogAction({ className, ...props }: React.ComponentProps): React.JSX.Element; declare function AlertDialogCancel({ className, variant, size, ...props }: AlertDialogPrimitive.Close.Props & Pick, 'variant' | 'size'>): React.JSX.Element; export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger };