import { HerdClient } from "../HerdClient.js";
import { TrailAction } from "./types.js";
import { ResourceProvider } from "./ResourceProvider.js";
export declare function runTrailAction(client: HerdClient, action: TrailAction, params: Record<string, any>, resources: ResourceProvider, silent?: boolean): Promise<any>;
export declare function execute(client: HerdClient, path: string, actionName: string | undefined, params: Record<string, any>, silent?: boolean): Promise<any>;
