import type { Chapter } from '../../ts';
declare const ChapterNavigation: import("svelte").Component<{
    showChapterNumber?: boolean;
    nextText?: string;
    previousText?: string;
    chapters?: Array<Chapter>;
    currentChapterIndex?: number;
    startIndex?: number;
    class?: string;
    onChapterChange?: (index: number) => void;
}, {}, "">;
type ChapterNavigation = ReturnType<typeof ChapterNavigation>;
export default ChapterNavigation;
