/// import "./AlertDialog.scss"; export type AlertDialogProps = { trigger: any; title: string; description: string; showCancel?: boolean; options?: JSX.IntrinsicElements["button"][]; }; declare const CustomAlertDialog: ({ trigger, title, description, showCancel, options, }: AlertDialogProps) => JSX.Element; export default CustomAlertDialog;