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