/** * Main hand history exporter */ import { GameState, HandHistory, ExportOptions } from "@pokertools/types"; /** * Export hand history from game state * * @param state Final game state (after hand is complete) * @param options Export options * @returns Formatted hand history string */ export declare function exportHandHistory(state: GameState, options?: ExportOptions): string; /** * Build hand history object without formatting * * @param state Final game state * @returns Structured hand history object */ export declare function getHandHistory(state: GameState): HandHistory; /** * Export multiple hands to a single file * * @param states Array of final game states * @param options Export options * @returns Formatted multi-hand history */ export declare function exportMultipleHands(states: GameState[], options?: ExportOptions): string;