/** * Creates a deep copy of the `src` object, excluding the properties defined by `excludedProperties`. */ export declare function cloneDeepWithoutExcluded(src: T, ...excludedProperties: (keyof T)[]): T;