/**
* Check if the number of occurrences of the 'open' string are the same of ths 'close' string in the input string
* @param input
* @param open
* @param close
* @returns
*/
export declarefunctionbalancedCounter(input: string, open?: string, close?: string): boolean;