export type FlagEnvironment = 'all' | 'production' | 'staging' | 'development'; export interface FeatureFlag { id: string; key: string; name: string; description?: string; enabled?: boolean; environment?: FlagEnvironment; rollout?: number; tags?: string[]; } interface FeatureFlagRowProps { flag: FeatureFlag; class?: string; onchange?: (id: string, enabled: boolean) => void; onedit?: (id: string) => void; } declare const FeatureFlagRow: import("svelte").Component; type FeatureFlagRow = ReturnType; export default FeatureFlagRow;