import { Order } from "../../shared/args.mjs"; //#region src/cli/commands/executor/webhook.d.ts export interface WebhookExecutorInfo { name: string; webhookUrl: string; disabled: boolean; } export interface ListWebhookExecutorsOptions { workspaceId?: string; profile?: string; order?: Order; limit?: number; } /** * List executors with incoming webhook triggers and return CLI-friendly info. * @param options - Listing options * @returns List of webhook executors with URLs */ export declare function listWebhookExecutors(options?: ListWebhookExecutorsOptions): Promise; //#endregion