import { FlagType, FlagScope } from '../entities/feature-flag.entity'; export declare class CreateFlagDto { 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; }