import { Page } from 'playwright-core';
/**
 * Function to check for the presence of a reCAPTCHA badge on the page.
 *
 * @async
 * @function isFoundReCaptchaBadge
 * @param {object} page - The page object (e.g., in Puppeteer) where the element will be searched.
 * @returns {Promise<boolean>} Returns a promise with a boolean value:
 * true if the reCAPTCHA badge is found, or false if not.
 *
 * @example
 * const isBadgePresent = await isFoundReCaptchaBadge(page);
 * console.log(isBadgePresent); // true or false
 */
export declare function isFoundReCaptchaBadge(page: Page): Promise<boolean>;
