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