type TranscriptFocusContextType = {
    activeDescendantIdState: readonly [string];
    focusByActivityKey: (activityKey: boolean | string | undefined, withFocus: boolean | undefined) => void;
    focusedActivityKeyState: readonly [string];
    focusedExplicitlyState: readonly [boolean];
    focusRelativeActivity: (delta: number) => void;
    getDescendantIdByActivityKey: (activityKey?: string) => string | undefined;
};
declare const TranscriptFocusContext: import("react").Context<TranscriptFocusContextType>;
export default TranscriptFocusContext;
export type { TranscriptFocusContextType };
//# sourceMappingURL=Context.d.ts.map