import { FlowNode } from './bpmnViewerOverlayCreator';
type FlowNodeOverlayProps = {
    flowNode: FlowNode;
    width: number;
    height: number;
    retryAction?: (processInstanceId: string, flowNodeInstanceId?: string, newToken?: any) => void;
    gotoProcessAction?: (processInstanceId: string) => void;
    gotoManualOrUserTaskAction?: (processInstanceId: string, flowNodeId: string) => void;
};
/**
 * @deprecated
 */
export default function FlowNodeOverlay(props: FlowNodeOverlayProps): import("react/jsx-runtime").JSX.Element;
export {};
