import { IProtocolParser } from "@multi-game-engines/core"; import { IBackgammonSearchOptions, IBackgammonSearchInfo, IBackgammonSearchResult } from "@multi-game-engines/domain-backgammon"; /** * 2026 Zenith Tier: GNU Backgammon プロトコルパーサー。 */ export declare class GNUBGParser implements IProtocolParser { parseInfo(data: string | Record): IBackgammonSearchInfo | null; parseResult(data: string | Record): IBackgammonSearchResult | null; createSearchCommand(options: IBackgammonSearchOptions): string[]; createStopCommand(): string; createOptionCommand(name: string, value: string | number | boolean): string; } //# sourceMappingURL=GNUBGParser.d.ts.map