export declare enum FlagType { BOOLEAN = "boolean", STRING = "string", NUMBER = "number", JSON = "json" } export declare enum FlagScope { GLOBAL = "global", TENANT = "tenant", USER = "user", PLAN = "plan" } export declare class FeatureFlag { id: string; key: string; name: string; description: string; flag_type: FlagType; scope: FlagScope; default_value: any; is_enabled: boolean; targeting_rules: Record; rollout_percentage: number; category: string; metadata: Record; created_at: Date; updated_at: Date; }