import type { ReadonlyDeep } from 'type-fest'; import type { PipelineJson } from '../../pipeline/PipelineJson/PipelineJson'; import type { TaskJson } from '../../pipeline/PipelineJson/TaskJson'; import type { string_markdown } from '../../types/typeAliases'; import type { string_parameter_value } from '../../types/typeAliases'; /** * @@@ * * @private internal type of `getKnowledgeFoTask` */ type GetKnowledgeForTaskOptions = { /** * @@@ */ readonly preparedPipeline: ReadonlyDeep; /** * @@@ */ readonly task: ReadonlyDeep; }; /** * @@@ * * @private internal utility of `createPipelineExecutor` */ export declare function getKnowledgeForTask(options: GetKnowledgeForTaskOptions): Promise; export {};