import { Action } from "../types"; import { EvmAgentKit } from "../agent"; /** * Find an action by its name or one of its similes */ export declare function findAction(query: string): Action | import("../actions").Action | undefined; /** * Execute an action with the given input */ export declare function executeAction(action: Action, agent: EvmAgentKit, input: Record): Promise>; /** * Get examples for an action */ export declare function getActionExamples(action: Action): string; //# sourceMappingURL=actionExecutor.d.ts.map