import type { Database } from "../../../process/Types"; export interface TimelineSeriesDefinition { title: string; guildIndex?: number; channelIndex?: number; } /** Generates the series that should be displayed */ export declare const generateSeries: (db: Database) => TimelineSeriesDefinition[];