import { Types } from "../helpers/types"; declare type ForEach = (v: unknown, k: unknown | undefined, c: unknown) => void; export declare function shallowClone(x: T, type?: Types, forEach?: ForEach): object; export {};