import { FWGroupService } from "./FWGroupService.js";
export declare enum FWFeature {
    ADBLOCK = "adblock",
    UNBOUND = "unbound",
    SAFE_SEARCH = "safe_search",
    FAMILY_PROTECT = "family_protect",
    DATA_PLAN = "data_plan"
}
export declare class FeatureService extends FWGroupService {
    /**
     * @param {string} featureName - Which feature to enable
     */
    enableFeature(featureName: FWFeature): Promise<{}>;
    /**
     * @param {string} featureName - Which feature to disable
     */
    disableFeature(featureName: FWFeature): Promise<{}>;
}
//# sourceMappingURL=FeatureService.d.ts.map