/** * PokerStars hand history format exporter * * Format specification based on PokerStars hand history text format */ import { HandHistory, ExportOptions } from "@pokertools/types"; /** * Export hand history to PokerStars format */ export declare function exportToPokerStars(history: HandHistory, options?: ExportOptions): string;