/** * Deeply clones a given value, creating a new instance of the value * with all nested properties recursively copied. * * This function is useful for creating a completely independent copy * of objects, arrays, or other complex data structures to avoid * unintended mutations to the original data. */ declare const cloneDeep: (value: T) => T; export default cloneDeep;