/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { IRunConfig, ITask } from "@workglow/task-graph"; import React from "react"; interface TaskRunAppProps { readonly task: ITask; readonly taskType: string; readonly overrides?: Record; readonly runConfig?: Partial; readonly onComplete: (result: unknown) => void; readonly onError: (error: Error) => void; } export declare function TaskRunApp({ task, taskType, overrides, runConfig, onComplete, onError, }: TaskRunAppProps): React.ReactElement; export {};