/** Same as Array.prototype.includes() but with type inference */
export declare function includes<T>(values: readonly T[], x: unknown): x is T;
