/**
 * Clone object, maintaining types
 */
declare function cloneObject<T>(item: T): T;
export { cloneObject };