/** * Determine whether a value *isn't* undefined * @param t the value to check * @public */ export declare function isDefined(t: T | undefined): t is T; /** * Determine whether a value *isn't* null * @param t the value to check * @public */ export declare function isNotNull(t: T | null): t is T; //# sourceMappingURL=checks.d.ts.map