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