/**
 * Check the text of a modal
 *                                  (alertbox, confirmbox or prompt)
 * @param  {String}   falseState    Whether to check if the text matches or not
 * @param  {String}   expectedText  The text to check against
 * @param ignoreCaseCheck
 */
export default function (falseState: boolean, expectedText: string, ignoreCaseCheck?: boolean): Promise<void>;
