import { type ITigerFeatureFlags } from "../uiFeatures.js"; export type FeatureDef = { id: string; key: string; l: boolean; version: string; type: "BOOLEAN" | "STRING" | "NUMBER" | "JSON"; value: any; }; export type FeaturesMap = Record; export declare function mapFeatures(features: FeaturesMap): Partial; //# sourceMappingURL=feature.d.ts.map