import React from 'react'; import { WebComponentProps, RowWithActions } from '../../../../types/Page'; import { EntityDict } from 'oak-domain/lib/base-app-domain'; export default function render(props: WebComponentProps; isCreate: boolean; entities?: string[]; pathChoice: Array<{ path: string; entity: string; }>; pathChosen: Array<{ path: string; entity: string; }>; recursivable: boolean; legalSourceEntity: boolean; destEntityFixed: boolean; }, { updateDestEntity: (de: string) => void; selectPath: (value: string) => void; resetPath: () => void; clearDestEntity: () => void; confirm: () => void; }>): React.JSX.Element | undefined;