import { IPlayTarget } from '../types/game-config'; import { Game } from './game'; /** * Returns a valid playable hand for current game user * * @export * @param {Game} game * @param {IPlayTarget} [target='table'] * @returns {(string[] | null)} */ export declare function findPlayableHand(game: Game, target?: IPlayTarget): string[] | null; //# sourceMappingURL=findPlayableHand.d.ts.map