import { Player } from "../Player";
import { Bet } from "./bet";
import { HandHol } from "./hand";
export declare class PlayerHighLow extends Player {
    cards: HandHol;
    bet: Bet;
    constructor(name?: string, credit?: number);
}
