/** * Checks if a value exists in an array. * * @param arr - The array to search in * @param val - The value to find * @returns True if the value is found in the array, false otherwise */ declare const includes: (arr: T[], val: T) => boolean; export default includes;