/**
* Asserts that the value is not null or undefined.
* This lets TypeScript know the value is of type T after this check.
* @param value The value to check for existence.
*/
export declarefunctionassertExists<T>(value: T | null | undefined): assertsvalueisT;