export declare type Chapter = { from?: string; to?: string; raw?: string; href?: string; current?: string; label?: string; isFolder?: boolean; active?: boolean; }; export declare function getFormatChapter(chapter: Record, current?: string): Chapter; export declare function formatChapters(arr?: Array>, current?: string): Chapter[];