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