/** * Copies property descriptors from source to target, optionally excluding keys. * Preserves lazy getters that would be lost with object spread. */ export default function copyPropertyDescriptors(source: object, target: T, excludeKeys?: string[]): T; //# sourceMappingURL=copyPropertyDescriptors.d.ts.map