import { CatCard, DeckModCard, OutcomesCard } from "../catsDeck";
export declare const useCatDeckHandScore: ({ hand, modCards, }: {
    hand: CatCard[];
    modCards: DeckModCard[];
}) => {
    multiplier: number;
    baseScore: number;
    handScore: number;
    outcomes: OutcomesCard[];
    clearOutcomes: () => void;
};
