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