import type { MemoryProfile } from './EntrySchema.js'; export declare class ProfileFormat { static serialize(profile: MemoryProfile): string; static deserialize(content: string): MemoryProfile; static readFromFile(filePath: string): Promise; static writeToFile(filePath: string, profile: MemoryProfile): Promise; }