import { createContext, useContext } from "react"; export type ScrollTranscriptToBottomIfNeeded = () => boolean; export const ScrollTranscriptToBottomContext = createContext( () => false, ); export function useScrollTranscriptToBottom(): ScrollTranscriptToBottomIfNeeded { return useContext(ScrollTranscriptToBottomContext); }