import type { IMatchHeader } from './match-header'; import type { IMatchPath } from './match-path'; import type { HttpMethod } from './util'; export declare class RuleMatch { method?: HttpMethod; headerMatches?: IMatchHeader[]; pathMatch?: IMatchPath; constructor(method?: HttpMethod, headerMatches?: IMatchHeader[], pathMatch?: IMatchPath); }