import React from 'react'; import type { DocumentColorEnum } from '../constants/colors.js'; interface Citation { documentId: string; snippet: string; pageNumber: number; ticker: string; displayDate: string; color: DocumentColorEnum; } interface PdfFocusState { documentId: string; pageNumber: number; citation?: Citation; } export interface PdfFocusContextProps { pdfFocusState: PdfFocusState; setPdfFocusState: React.Dispatch>; } export declare const PdfFocusContext: React.Context; export interface PdfFocusProviderProps { children: React.ReactNode; } declare const PdfFocusProvider: React.FC; export default PdfFocusProvider;