import { By } from 'selenium-webdriver'; import { DriverLike } from '../../'; import { OjConveyorBelt } from './OjConveyorBelt'; export { OjConveyorBelt }; /** * Retrieve an instance of [OjConveyorBelt](../classes/elements.OjConveyorBelt.html). * @example * ```javascript * import { ojConveyorBelt } from '@oracle/oraclejet-webdriver/elements'; * const el = await ojConveyorBelt(driver, By.id('my-oj-conveyor-belt')); * ``` * @param driver A WebDriver/WebElement instance from where the element will be * searched. If WebDriver is passed, the element will be searched globally in the * document. If WebElement is passed, the search will be relative to this element. * @param by The locator with which to find the element */ export declare function ojConveyorBelt(driver: DriverLike, by: By): Promise;