import { FlowNodeInstance, ProcessInstance } from '@5minds/processcube_engine_sdk';
export type RetryDialogProps = {
    isOpen: boolean;
    processInstance: ProcessInstance;
    flowNodeInstance?: FlowNodeInstance;
    onClose: () => void;
};
export declare function RetryDialog(props: RetryDialogProps): import("react/jsx-runtime").JSX.Element;
