import { WinningLineDescribing } from "pokie";
export declare class WinningLine implements WinningLineDescribing {
    private readonly winAmount;
    private readonly definition;
    private readonly pattern;
    private readonly lineId;
    private readonly symbolsPositions;
    private readonly wildSymbolsPositions;
    private readonly symbolId;
    constructor(winAmount: number, definition: number[], pattern: number[], lineId: string, symbolsPositions: number[], wildSymbolsPositions: number[], symbolId: string);
    getDefinition(): number[];
    getSymbolId(): string;
    getLineId(): string;
    getSymbolsPositions(): number[];
    getWildSymbolsPositions(): number[];
    getWinAmount(): number;
    getPattern(): number[];
}
