/** * Class to read value for Language testing */ export declare class lmt { /** * Fetch list of label for Language Testing * @param {string} key */ static getLabel(key: string): Promise; /** * Fetch User Language */ static getUserLangCode(): Promise; /** * Get the language APi based on the setup provided * @param {string }setup */ static getLangApi(): Promise; /** * Get MSTKey API based on setup * @param {string}setup */ static getMSTKeyAPI(): Promise; /** * Returns Prodcut name for lmt * @param {string} prodcutName */ static getProdcutcode(prodcutName: string): Promise; /** * Fetch user MSTkey from the json using api * @param {string} productCode */ static get_USER_MST_keys(productCode: string): Promise>; /** * Fetch MST label used for testing */ static getAutomationPair(): Promise>; /** * Filter value from MST key based on testing labels * @param {string} productCode */ static matchKeys(productCode: string): Promise>; }