export interface UseActionControlValue { /** True while the agent's on-screen action flow is running (single action or multi-step plan). */ actionsActive: boolean; stopActions: () => Promise; } export declare function useActionControl(): UseActionControlValue;