/** * Check if a feature that is behind a feature flag is enabled * This function is case-insensitive. * All feature flags are enabled by default in unit tests (using tap). */ export declare function isFeatureEnabled(feature: string): boolean;