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