import { GameAction } from '@firestone-hs/simulate-bgs-battle/dist/simulation/spectator/game-action';
import { GameSample } from '@firestone-hs/simulate-bgs-battle/dist/simulation/spectator/game-sample';
export declare class ExtendedGameSample implements GameSample {
    readonly actions: readonly GameAction[];
    readonly playerCardId: string;
    readonly playerHeroPowerCardId: string;
    readonly playerHeroPowerUsed: boolean;
    readonly opponentCardId: string;
    readonly opponentHeroPowerCardId: string;
    readonly opponentHeroPowerUsed: boolean;
    readonly playerEntityId: number;
    readonly playerHeroPowerEntityId: number;
    readonly opponentEntityId: number;
    readonly opponentHeroPowerEntityId: number;
    readonly anomalies: readonly string[];
}
