export interface TimelineOptions {
    scale?: number;
    width?: number;
    startTime?: number;
    gapThreshold?: number;
}
export declare function generateAsciiTimeline(entries: PerformanceEntry[], options?: TimelineOptions): string;
