basant307/AI_Governance_Project
048
1/**2 * @license3 * Copyright 2025 Qwen Team4 * SPDX-License-Identifier: Apache-2.05 */6import type { DualOutputBridge } from './DualOutputBridge.js';7/**8 * React context for the dual output bridge.9 * Provides access to the sidecar JSON event emitter throughout the10 * interactive UI component tree.11 */12export declare const DualOutputContext: import("react").Context<DualOutputBridge | null>;13/**14 * Hook to access the dual output bridge from any component or hook15 * within the interactive UI.16 *17 * Returns null when dual output is not enabled (no --json-fd or --json-file).18 */19export declare function useDualOutput(): DualOutputBridge | null;20 