import type { MemoryHistorySnapshot } from "./memory.js"; import type { SnapshotResolution } from "./snapshot-selector-resolver.js"; export interface MemoryCompareOutputContext { getRelativeAgeLabel: (date: Date) => string; resolveSnapshotSelector: (input: string) => SnapshotResolution; } export declare function formatRelativeAgeLabel(date: Date): string; export declare function formatMemoryHistoryOutput(snapshots: readonly MemoryHistorySnapshot[], context: Pick): string[]; export declare function formatMemoryDiffOutput(snapshots: readonly MemoryHistorySnapshot[], context: MemoryCompareOutputContext, selectors?: { baseline?: string; target?: string; }): string[]; //# sourceMappingURL=memory-compare-output.d.ts.map