import React from "react"; import { useEnv, useVariant, useRegion, useEnvContext } from "../../services/GetProjectConfigService/EnvContext.js"; export interface EnvIsProps { env?: string | string[]; variant?: string | string[]; region?: string | string[]; children: React.ReactNode; } /** * Conditionally renders children based on the current environment, variant, or region. * Multiple conditions are AND-ed together. */ export declare const EnvIs: React.FC; /** * Conditionally renders children when the current environment, variant, or region does NOT match. * Multiple conditions are AND-ed together (renders when NONE of the conditions match). */ export declare const EnvIsNot: React.FC; export declare const EnvIsProd: React.FC<{ children: React.ReactNode; }>; export declare const EnvIsNotProd: React.FC<{ children: React.ReactNode; }>; export { useEnv, useVariant, useRegion, useEnvContext };