/** * Pick item inside component */ export declare class DewDropdown { /** *  To select first element in the dropdown * * ```js * * DewDropdown.selectFirst("//dew-dropdown[type='dropdown']") * ``` * * @param {String} locator dropdown field located by CSS|XPath|strict locator. * */ static selectFirst(locator: string): Promise; /** * To select element by title * ```js * await DewDropdown.selectByTitle("//dew-dropdown[type='dropdown']","Sales") * ``` * @param {string}locator * @param {string} title */ static selectByTitle(locator: string, title: string): Promise; /** * To select element by given text from a dropdown * ```js * await DewDropdown.selectByText("//dew-dropdown[type='dropdown']","Sales") * ``` * @param {string}locator * @param {string}text */ static selectByText(locator: string, text: string): Promise; }