/** * Checks if given value is in the target array of allowed values. * * @param value The value being checked. * @param target The target value to perform the check against. * @return True if the value is not in the target array, false otherwise. */ export declare function isNotIn(value: any, target: any[]): boolean;