export interface Flag { value: boolean; key: string; } export type FlagsResponse = Record; export type FeatureFlagsOptions = { context: Record; fallbackFlags?: string[]; timeoutMs?: number; staleWhileRevalidate?: boolean; };