import React from 'react'; import { WithTranslation, WithTranslationProps } from 'react-i18next'; import { TocData, Router, Lang } from '../../models'; import './TocNavPanel.scss'; export interface TocNavPanelProps extends TocData { router: Router; lang: Lang; fixed?: boolean; className?: string; } declare const _default: React.ComponentType & WithTranslationProps, WithTranslationProps>, keyof WithTranslation> & WithTranslationProps>; export default _default;