import { NetworkLog, SearchScope } from '../types'; export interface SearchQueryOptions { scope?: SearchScope; isRegex?: boolean; isCaseSensitive?: boolean; } export declare function matchNetworkLogQuery(log: NetworkLog, searchQuery: string, routePath?: string, options?: SearchQueryOptions): boolean;