import { Exclude } from './Exclude';
/**
 * Remove `undefined` & `null` out of `U`
 * @param U to make non-nullable
 * @returns [[Union]]
 * @example
 * ```ts
 * ```
 */
export declare type NonNullable<U extends any> = Exclude<U, undefined | null>;
