import type { ReadonlyDeep } from 'type-fest'; import type { TaskJson } from '../../pipeline/PipelineJson/TaskJson'; import type { string_markdown } from '../../types/string_markdown'; import type { string_parameter_value } from '../../types/string_name'; /** * Retrieves example values or templates for a given task, used to guide or validate pipeline execution. * * @private internal utility of `createPipelineExecutor` */ export declare function getExamplesForTask(task: ReadonlyDeep): Promise;