/** * Checks whether a value exists in the given array * @param array The array * @param val The value */ export declare function includes(array: any[], val: any): boolean;