/** @jsxImportSource @opentui/react */ import { type ReactNode } from "react"; import type { ScrollBoxRenderable } from "@opentui/core"; import type { AppServices } from "../../../ui-core/bootstrap/composition-root.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; import { useTranscriptState } from "../../../ui-core/react/use-transcript-store.js"; export interface TranscriptViewProps { readonly services: AppServices; readonly theme: Theme; readonly focused: boolean; readonly contentWidth?: number | undefined; readonly scrollRef?: React.RefObject; } export declare function useTranscriptFollowKey(state: ReturnType, running: boolean): string; export declare function TranscriptView(props: TranscriptViewProps): ReactNode;