import React from "react";
import { MassAppealCard } from "../../cardDecks/massAppealDeck";
export interface Props {
    isHandDealt: boolean;
    showNextLevelBtn: boolean;
    isGameOver: boolean;
    isAllowDealing: boolean;
    shuffleDeck: () => void;
    remainingDeck: MassAppealCard[];
    nextLevel: () => void;
    isLevelBeaten: boolean;
    nextHand: () => void;
    handsRemaining: number;
    levelScore: number;
    isOutOfHands: boolean;
    restartGame: () => void;
}
export declare const ShuffleDealBtn: React.FC<Props>;
