export default function assign<T extends object, K extends keyof T>(obj: T, newKey: K, newValue: T[K]): T;
