import Card from '../interfaces/Card';
/**
 * Clone an object and its properties.
 *
 * @param {Object} o The object to clone.
 *
 * @returns {Object} Returns the cloned object.
 */
export declare function deepCopy(o: any): Array<Card>;
