/** * React binding for `TranscriptStore` (V2-050). * * Isolated to this one file so the store, reducer, and types stay renderer- * independent (see `test/tui-v2/architecture.test.ts`); every transcript * component reads state through this hook instead of subscribing by hand. */ import type { TranscriptStore } from "../state/transcript-store.js"; import type { TranscriptState } from "../state/transcript-types.js"; export declare function useTranscriptState(store: TranscriptStore): TranscriptState;