type BooleanFlags = Record; type NormalizedFeatureFlags = Partial; /** * Normalise and filter a free Record to match * the rules for feature flags in editor and renderer * * Input has to match to not be filtered output: * 1. cased in kebab-case (match [a-z-]) * 2. has any value * * Output matches * 1. cased in camelCase (match [a-zA-Z]) * 2. has boolean value or object {} value * * @param rawFeatureFlags */ export declare function normalizeFeatureFlags(rawFeatureFlags?: Record, options?: { objectFlagKeys: string[]; }): NormalizedFeatureFlags; export { getEnabledFeatureFlagKeys } from './getEnabledFeatureFlagKeys';