/** * Safe version of TypeScript's non-null asertion (`value!`) that throws * an error if `value` is actually null or undefined. */ export declare function nonNull(value: T | null | undefined): T;