import Workspace from "../../core/internal/workspace/Workspace"; import { Experiment, HackleUser } from "../../core/internal/model/model"; import TargetMatcher from "../../core/internal/evaluation/match/TargetMatcher"; export declare class SplitUrlMatcher { private readonly targetMatcher; constructor(targetMatcher: TargetMatcher); matches(workspace: Workspace, experiment: Experiment, user: HackleUser): boolean; }