Package:
@hexos/react-uiProps for the ActionConfirmDialog component.
interface ActionConfirmDialogProps {
actionName: string;
args: unknown;
message: string;
onConfirm: () => void;
onCancel: () => void;
isExecuting?: boolean;
className?: string;
}