import type { LogParams } from '../../types/internal'; /** * Asserts that the value is not `null`. */ export declare function assertValueIsNotNull(value: Type, check: string, payload?: LogParams): asserts value is Exclude; /** * Asserts that the value is `null`. */ export declare function assertValueIsNull(value: Type, check: string, payload?: LogParams): asserts value is null & Type;