import React from 'react'; import './styles.scss'; interface ChapterNavigationI { content?: { name: string; id: string; [key: string]: any; }[]; title?: string; hideFirstEntry?: boolean; hideArrows?: boolean; className?: string; jump?: boolean; } export declare const ChapterNavigation: ({ content, title, hideFirstEntry, hideArrows, className, jump, }: ChapterNavigationI) => React.JSX.Element; export {}; //# sourceMappingURL=chapterNavigation.d.ts.map