/**
* checks if current active window's title matches the given string or regexp
* @param title title to match
* @returns {boolean} true the current active window's title matches the given argument
*/
export declarefunctionmatchCurrentWindowTitle(title: string | RegExp): boolean;