import type { RegExpValue as RegExpValueOriginal } from 'obsidian'; import { NotNullValue } from './NotNullValue.mjs'; export declare class RegExpValue extends NotNullValue { constructor(regexp: RegExp); static create__(regexp: RegExp): RegExpValue; static fromOriginalType3__(value: RegExpValueOriginal): RegExpValue; asOriginalType3__(): RegExpValueOriginal; constructor3__(_regexp: RegExp): void; isTruthy(): boolean; toString(): string; }