declare function isNotNullish<T>(v: T | null | undefined): v is NonNullable<T>;

export { isNotNullish };
