import { InternalFeatureRepository } from './internal_feature_repository';
export declare class InterceptorValueMatch {
    value: string | undefined;
    constructor(value: string);
}
export interface FeatureStateValueInterceptor {
    matched(key: string): InterceptorValueMatch;
    repository(repo: InternalFeatureRepository): void;
}
