/**
*
* Get app strings for a specific language. Returns a key-value object of all string resources
* defined in the application for the given language.
*
* > **Note:** Falls back to the deprecated Appium 2 protocol endpoint if the driver does not support the `mobile:` execute method.
*
*
:getStrings.js
it('should get app strings', async () => {
// Get strings for default language
const strings = await browser.getStrings()
// Get strings for a specific language
const frStrings = await browser.getStrings('fr')
})
*
*
* @param {string} [language] Language code (e.g. `'fr'`, `'de'`). Defaults to the device language.
* @param {string} [stringFile] Path to the strings file (Android only).
*
* @returns {`Promise>`} Key-value map of all string resources.
*
* @support ["ios","android"]
*/
export declare function getStrings(this: WebdriverIO.Browser, language?: string, stringFile?: string): Promise>;
//# sourceMappingURL=getStrings.d.ts.map