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