export interface IClusterMatchRule { account: string; location: string; stack: string; detail: string; priority?: number; } export interface IClusterMatcher { getMatchingRule(account: string, location: string, clusterName: string, rules: IClusterMatchRule[]): IClusterMatchRule; } export declare class DefaultClusterMatcher implements IClusterMatcher { getMatchingRule(account: string, location: string, clusterName: string, rules: IClusterMatchRule[]): IClusterMatchRule; } export declare const ClusterMatcher: DefaultClusterMatcher;