import 'reflect-metadata';
import { IFeature } from './interface/feature.interface';
export declare class FeatureManager {
    private readonly environment;
    constructor(environment: string);
    isEnabled<TContext extends object>(feature: IFeature | string, context?: TContext): Promise<boolean>;
}
