export interface TaskType { process_definition: [ { process_defintion_key: string; process_defintion_path: string; process_defintion_label: string; } ]; renderChildren: Function; base_url: string; taskListLabel: string; taskEndpoint: string; } declare const Task: (props: TaskType) => import("react/jsx-runtime").JSX.Element; export default Task;