import { WinningScatterDescribing } from "pokie";
export declare class WinningScatter implements WinningScatterDescribing {
    private readonly symbolId;
    private readonly symbolsPositions;
    private readonly winAmount;
    constructor(symbolId: string, symbolsPositions: number[][], winAmount: number);
    getSymbolId(): string;
    getSymbolsPositions(): number[][];
    getWinAmount(): number;
}
