export type Nullable = T | null | undefined; export declare const checkIsDefined: (maybeT: T) => maybeT is T;