export interface ExpectedTextValue { string?: string; regexSource?: string; regexFlags?: string; matchSubstring?: boolean; ignoreCase?: boolean; normalizeWhiteSpace?: boolean; } export interface FrameExpectParams { expression: string; expressionArg?: unknown; expectedText?: ExpectedTextValue[]; expectedNumber?: number; expectedValue?: unknown; isNot: boolean; timeout: number; } export interface ExpectResult { matches: boolean; received?: unknown; missingReceived?: boolean; } export declare function textValue(value: string | RegExp, flags?: { normalizeWhiteSpace?: boolean; matchSubstring?: boolean; ignoreCase?: boolean; }): ExpectedTextValue; export declare function buildExpectEvaluate(selector: string, params: FrameExpectParams): string; //# sourceMappingURL=web-expect-matcher.d.ts.map