import { type FeatureFlagDefinition } from "./registry.js"; type NitroPluginDef = (nitroApp: any) => void | Promise; /** A tiny startup plugin for app-local, explicit feature-flag registration. */ export declare function createFeatureFlagsPlugin(options: { flags: readonly FeatureFlagDefinition[]; /** * One-time compatibility bridge for apps that previously stored global * booleans together in a single settings object. Only legacy `true` values * are copied, and an explicit rule in the new store always wins. */ legacyBooleanSetting?: { settingKey: string; flagKeys: readonly string[]; }; }): NitroPluginDef; export {}; //# sourceMappingURL=plugin.d.ts.map