export declare class ParenthesisWrapper {
    protected _open: string;
    protected _close: string;
    protected _closed: RegExp;
    wrap(str: string): string;
    wrapIfMoreThanOneChar(str: string): string;
}
