/** * Check if the input string contains a string representation of searchElem * @param str * @param searchElem element to search * @returns a boolean value, true if input `str` contains searchElem, false otherwise. */ export declare const contains: (str: string, searchElem: any) => boolean;