declare class HandResult {
    static BankerWins: HandResult;
    static PlayerWins: HandResult;
    static Tie: HandResult;
    static isOpposite(foo: HandResult, bar: HandResult): boolean;
    static isIdentical(foo: HandResult, bar: HandResult): boolean;
    static getOpposite(foo: HandResult): HandResult;
    private _result;
    constructor(code: number);
}
export default HandResult;
