import { FeatureFlagUser, ForgeFeatureFlagConfig } from './types'; export declare class FeatureFlags { private initialized; private evaluator; /** * Initialize the feature flags client */ initialize(user: FeatureFlagUser, config?: ForgeFeatureFlagConfig): Promise; /** * Check if a feature flag is enabled for the user */ checkFlag(flagName: string, defaultValue?: boolean): boolean; /** * Shutdown the feature flags client */ shutdown(): void; isInitialized(): boolean; } //# sourceMappingURL=featureFlags.d.ts.map