import { ExecutorInfo } from "./transform.mjs"; import { z } from "zod"; //#region src/cli/commands/executor/get.d.ts type ExecutorLike = { name: string; }; export type GetExecutorTypedOptions = { executor: E; workspaceId?: string; profile?: string; }; /** * Get an executor by name and return CLI-friendly info. * @param options - Executor lookup options * @returns Executor information */ export declare function getExecutor(options: GetExecutorTypedOptions): Promise; //#endregion