import { AppConfigService } from "@wocker/core";
export declare class ExperimentalController {
protected readonly appService: AppConfigService;
constructor(appService: AppConfigService);
enable(feature?: string): void;
disable(feature?: string): void;
getFeatures(): string[];
}