import React from 'react'; import { GrepTableOfContentProviderProps as ContextProviderProps } from './context/provider'; export interface GrepTableOfContentProps extends ContextProviderProps { style?: React.CSSProperties; className?: string; setSelectedValue: (selected: unknown) => void; percentageRendered: number; } export declare const GrepTableOfContent: React.FC; export default GrepTableOfContent;