export { updateType };
/** Help TypeScript update the type of dynamically modified objects. */
declare function updateType<Thing, Clone>(thing: Thing, clone: Clone): asserts thing is Thing & Clone;
