/**
 * Type safe version to remove nulls and undefineds from array
 *
 * usage: `myArray.filter(notEmpty)`
 *
 * @param value
 * @returns
 */
export declare function notEmpty<TValue>(value: TValue | null | undefined): value is TValue;
