/** * Assigns props from one object to another. Focused on performance, only normal objects with no * prototype are supported. */ export default function fastDeepAssign>(target: T, source: any): any;