/** * JSON hand history format exporter * * Machine-readable format for analysis and storage */ import { HandHistory, ExportOptions } from "@pokertools/types"; /** * Export hand history to JSON format */ export declare function exportToJSON(history: HandHistory, options?: ExportOptions): string; /** * Parse hand history from JSON */ export declare function parseFromJSON(json: string): HandHistory;