import type { SubscriptionEntry } from "./types.js"; export interface TimelineProps { entries: SubscriptionEntry[]; timeRange: { min: number; max: number; }; selection: [number, number] | null; onSelectionChange: (selection: [number, number] | null) => void; } export declare function Timeline({ entries, timeRange, selection, onSelectionChange, }: TimelineProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Timeline.d.ts.map