interface DateEvent { title: string; titleLink: string; } interface DateEntry { date: string; events: DateEvent[]; } interface Props { dates: DateEntry[]; /** Colour for the timeline bullet symbols and line. */ symbolColour?: string; /** Colour for the date headings. */ dateColour?: string; /** The height of the list, bindable for the parent to read. */ listHeight?: number; id?: string; class?: string; } declare const TOCList: import("svelte").Component; type TOCList = ReturnType; export default TOCList;