import { NetworkName } from '@configuration'; export declare const EMPTY_STRING = ""; export declare const DEFAULT_CHAR_INDEX = "#"; export declare const DEFAULT_EVM_VERSION = "cancun"; export declare const DEFAULT_MNEMONIC_PATH = "m/44'/60'/0'/0"; export declare const DEFAULT_MNEMONIC_LOCALE = "en"; export declare const DEFAULT_MNEMONIC_COUNT = 20; export declare const SUFIXES: { typechainFactory: string; proxy: string; proxyAdmin: string; mnemonic: string; privateKey: string; jsonRpc: string; mirror: string; }; export declare const NETWORK_LIST: { name: readonly ["hardhat", "local", "previewnet", "testnet", "mainnet"]; chainId: readonly [1337, 298, 297, 296, 295]; }; export declare const DEPLOY_TYPES: readonly ["tup", "resolverProxy", "direct"]; export declare const CONTRACT_NAMES_WITH_TUP: string[]; export declare const CONTRACT_NAMES_WITH_RESOLVER_PROXY: string[]; export declare const CONTRACT_NAMES: readonly ["TransparentUpgradeableProxy", "ProxyAdmin", "ResolverProxy", "BusinessLogicResolver", "DiamondFacet", "StableCoinFactoryFacet", "HederaTokenManagerFacet", "HederaReserveFacet", "BurnableFacet", "CashInFacet", "CustomFeesFacet", "DeletableFacet", "FreezableFacet", "HoldManagementFacet", "KYCFacet", "PausableFacet", "RescuableFacet", "ReserveFacet", "RoleManagementFacet", "RolesFacet", "SupplierAdminFacet", "TokenOwnerFacet", "WipeableFacet"]; export declare const LOCAL_DEFAULT_ENDPOINTS: { jsonRpc: string; mirror: string; }; export declare const HEDERA_DEFAULT_ENDPOINTS: (network: NetworkName) => string; export declare const MESSAGES: { error: { envNotFound: readonly ["❌ Environment variable \"", "\" is not defined. Please set the \"", "\" environment variable."]; }; }; export declare const GAS_LIMIT: { max: number; default: number; low: number; high: number; }; export declare const WEIBARS_PER_TINYBAR = 10000000000n; export declare const TINYBARS_PER_HBAR = 100000000n; export declare const WEIBARS_PER_HBAR: bigint;