import React from "react";
export interface Props {
    clickPlayHands: () => void;
    handsRemaining: number;
    hasSelectedCards: boolean;
    showTurnBtns: boolean;
}
export declare const PlayHandBtn: React.FC<Props>;
