/**
 * 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 declare function balancedCounter(input: string, open?: string, close?: string): boolean;
