/** * Feature Types * Type definitions for feature flag management */ export interface FeatureFlags { [key: string]: boolean | string | number | object; } /** * Common feature flag definitions */ export declare const CommonFeatures: { readonly DARK_MODE: "ui.darkMode"; readonly SIDEBAR: "ui.sidebar"; readonly MOBILE_NAV: "ui.mobileNav"; readonly BREADCRUMBS: "ui.breadcrumbs"; readonly SSR: "experimental.ssr"; readonly STREAMING: "experimental.streaming"; readonly LAZY_LOADING: "experimental.lazyLoading"; readonly VOICE_MODE: "user.voiceMode"; readonly ADVANCED_COMPOSER: "user.advancedComposer"; readonly UPGRADE_PILLS: "user.upgradePills"; readonly REQUEST_RETRY: "performance.requestRetry"; readonly POLLING: "performance.polling"; readonly CACHE: "performance.cache"; }; //# sourceMappingURL=feature-types.d.ts.map