export declare class IdentifierDecorator {
    start: string;
    end: string;
    constructor(identifierEscape?: {
        start?: string;
        end?: string;
    });
    decorate(text: string): string;
}
