/** * Type guard for checking if a value or object is non null. * * @export */ export declare function isNonNull(value: T | undefined | null): value is NonNullable; /** * Type guard for checking if a value or object is defined. * * @export */ export declare function isDefined(value: T | undefined | null): value is NonNullable; /** * Checks if a value or object is non null or undefined, throws an error otherwise. * * @export */ export declare function requireNonNull(value: T | null | undefined, message: string): T;