import { Hand, Shoe } from 'cardation'; /** * A recycable shoe is a shoe that can be recycled. */ declare class RecycleShoe extends Shoe { /** * Collect the cards from the dealt hand and put them back to the shoe. * @param {Hand} hand the hand to collect * @param {boolean} shouldShuffle whether to shuffle while collection */ collect(hand: Hand, shouldShuffle?: boolean): void; } export default RecycleShoe;