export * from "./type";
export declare const AppEnv: {
    readonly LOCAL: "local";
    readonly E2E: "e2e";
    readonly TESTNET_STAGING: "testnet-staging";
    readonly TESTNET: "testnet";
    readonly MAINNET: "mainnet";
};
export declare const EnvConfigValues: ("local" | "e2e" | "testnet-staging" | "testnet" | "mainnet")[];
export type EnvConfig = (typeof EnvConfigValues)[number];
export declare function getContractsConfig(env: EnvConfig): import("./type").ContractsConfig;
export declare function shouldEndorseXApps(): boolean;
export declare function shouldNotUpgradeContracts(): boolean;
export declare function isE2E(): boolean;
