/** * @license * Copyright 2026 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { ITaskConstructor } from "@workglow/task-graph"; type AnyTaskConstructor = ITaskConstructor; /** * Resolves a task class from what a person typed: exact type name first, then * case-insensitively with or without the `Task` suffix. */ export declare function resolveTaskType(name: string): AnyTaskConstructor | undefined; export {};