import { PageConfigTypes } from "../../../custom-types/pageConfig-types";
/**
 * Check if element by index exists.
 * The function should be used if we are expecting to find multi element occurrence
 * Element index in Array starts from [0], but the end user on UI will see 1st, 2nd, 3rd, 4th... element
 * @param  {number}   elementPosition  Passed to the function should be >= 1
 *                                   index - will be calculated and adjusted accordingly
 * @param  {String}   pageObject     Element selector
 * @param  {boolean}   falseCase     Whether to check if element by Index should exist or not
 */
declare const _default: (elementPosition: number, pageConfig: PageConfigTypes, falseCase: boolean) => Promise<void>;
export default _default;
