/**
 * @author WMXPY
 * @namespace Variable_SandLiteral
 * @description RegExp
 */
export declare class SandLiteralRegExp {
    static create(pattern: string, flagsString: string): SandLiteralRegExp;
    private readonly _pattern;
    private readonly _flags;
    private constructor();
    toNativeRegExp(): RegExp;
}
