export type Nullish = null | undefined;
export declare const isNullish: (v?: unknown) => v is Nullish;
