import { type TCard } from '../types/index.js'; export declare const useHand: (playerId: string) => { hand: TCard[]; drawCard: (count?: number) => void; playCard: (cardId: string) => void; discard: (cardId: string) => void; };