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