/** * check whether the input string match with Table synonyms * @param {String} str - string to compare with synonyms * @returns {Boolean} */ export declare function CheckIsTable(str: string): boolean; /** * check whether the input string match with Chair synonyms * @param {String} str - string to compare with synonyms * @returns {Boolean} */ export declare function CheckIsChair(str: string): boolean; /** * check whether the input string match with HotDesk synonyms * @param {String} str - string to compare with synonyms * @returns {Boolean} */ export declare function CheckIsHotDesk(str: string): boolean; /** * check whether the input string match with DedicatedDesk synonyms * @param {String} str - string to compare with synonyms * @returns {Boolean} */ export declare function CheckIsDedicatedDesk(str: string): boolean;