import type { ReactNode } from "react"; import type { TranscriptWindow } from "./transcript-window.js"; import type { SelectionState } from "../../ui-core/controllers/selection-controller.js"; import type { SemanticDocument } from "../../ui-core/state/semantic-document.js"; export declare function LiveTail(props: { readonly window: TranscriptWindow; readonly rows: number; readonly document?: SemanticDocument | undefined; readonly selection?: SelectionState | undefined; }): ReactNode;