import React, { PropsWithChildren } from "react"; import { EnvironmentName } from "./types"; export declare const EnvironmentContext: React.Context; export type EnvironmentContextProps = { /** * A string representing the environment that the banner should be rendered for. */ currentEnvironment: EnvironmentName; }; /** * Provides the environment value to all environment banners in the app. */ export declare const EnvironmentProvider: ({ currentEnvironment, children, }: PropsWithChildren) => React.JSX.Element;