import { PageConfigTypes } from "../../../custom-types/pageConfig-types";
/**
 * Check if the given elements contains text
 * @param pageConfig
 * @param  {String}   falseCase     Whether to check if the content contains
 *                                  the given text or not
 * @param  {String}   expectedText  The text to check against
 * @param ignoreCaseCheck
 */
export default function (pageConfig: PageConfigTypes, falseCase: boolean, expectedText: string, ignoreCaseCheck?: boolean): Promise<void>;
