import { Order } from "../../shared/args.mjs"; import { ExecutorListInfo } from "./transform.mjs"; import { z } from "zod"; //#region src/cli/commands/executor/list.d.ts export interface ListExecutorsOptions { workspaceId?: string; profile?: string; order?: Order; limit?: number; } /** * List executors in the workspace and return CLI-friendly info. * @param options - Executor listing options * @returns List of executors */ export declare function listExecutors(options?: ListExecutorsOptions): Promise; //#endregion