Package:
@hexos/react-coreReturn type of the useAgentAction hook, providing execution controls and state.
interface UseAgentActionReturn<TInput> {
execute: (input: TInput) => Promise<void>;
isExecuting: boolean;
error: Error | null;
lastResult: unknown;
clearError: () => void;
}