import React from 'react'; import { AlertDialogCancel } from './alert-dialog'; import { Button } from '../button'; export declare function useAlertDialog({ title, description, cancelAction, action, }: { title: React.ReactNode; description?: React.ReactNode; cancelAction?: React.ComponentProps; action?: React.ComponentProps; }): { open: boolean; setOpen: React.Dispatch>; container: React.JSX.Element; };