/**
 * Check if object contains value
 */
declare function contains(obj: any, needle: any): boolean;
export default contains;
