export declare function splitAndMarkByRegex(str: string, regex: RegExp): Array<{
    text: string;
    isMatch: boolean;
}>;
