export declare enum CONTRACT_LIST { ROUTER = "FunctionsRouter", COORDINATOR = "FunctionsCoordinator", TOS = "TermsOfServiceAllowList", CLIENT = "FunctionsClientUpgradeHelper" } export declare enum EVM_NETWORKS { EVM = "evm" } export declare enum CONTRACT_VERSION { '1.0.0' = "1_0_0", '1.1.0' = "1_1_0", '1.3.0' = "1_3_0", '1.3.1' = "1_3_1" } export declare const contractPath: (network: EVM_NETWORKS, contractName: CONTRACT_LIST, version: CONTRACT_VERSION) => string; export declare const buildPath: (network: EVM_NETWORKS, version: CONTRACT_VERSION) => string; export declare const buildPathEVM: (version: CONTRACT_VERSION) => string; export declare const routerContractLoader: (version: CONTRACT_VERSION) => () => import("ethers").ContractFactory; export declare const coordinatorContractLoader: (version: CONTRACT_VERSION) => () => import("ethers").ContractFactory; export declare const tosAllowListContractLoader: (version: CONTRACT_VERSION) => () => import("ethers").ContractFactory; export declare const clientContractLoader: (version: CONTRACT_VERSION) => () => import("ethers").ContractFactory; //# sourceMappingURL=contracts.d.ts.map