import XRegExpClass, { ExecArray } from 'xregexp/types';
type TRegExp = typeof XRegExpClass;
interface IXRegExp extends TRegExp {
    execLb(str: string, regex: string, flags: string): ExecArray | null;
    testLb(str: string, regex: string, flags: string): boolean;
    searchLb(str: string, regex: string, flags: string): number;
    matchAllLb(str: string, regex: string, flags: string): any[];
    replaceLb(str: string, regex: string, replacement: string, flags: string): string;
}
declare const XRegExp: IXRegExp;
export { XRegExp };
//# sourceMappingURL=XRegLookup.d.ts.map