/*! Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. */ export declare type Diff = ({ [P in T]: P; } & { [P in U]: never; } & { [x: string]: never; })[T]; export declare type Omit = Pick>;