/** * @public */ export type Nullable = T | null; /** * Type guard that checks of `null`. * * @public */ export declare function isNullable(value: Nullable): value is null; /** * Type guard that checks of not `null`. * * @public */ export declare function isNotNullable(value: Nullable): value is T; /** * Returns the otherwise value if a value is nullable. * * @public */ export declare function otherwiseNullable(value: Nullable, otherwise: T): T; /** * @public */ export declare namespace Nullable { const NULL: null; } //# sourceMappingURL=Nullable.d.ts.map