import { IRegexOptions } from "./statements/find";
export declare class ABAPRegExp {
    static convert(input: string): string;
    static escapeRegExp(text: string): string;
    static getRegex(options: IRegexOptions): RegExp;
}
