import { Exclude } from './Exclude'; /** * Get an [[Union]] that is the difference between `U1` & `U2` * @param U1 to check differences with * @param U2 to check differences against * @returns [[Union]] * @example * ```ts * ``` */ export declare type Diff = Exclude | Exclude;