import { Network } from '@openzeppelin/defender-sdk-base-client'; import { DeployClient, UpgradeContractResponse } from '@openzeppelin/defender-sdk-deploy-client'; export interface FunctionArgs { proxyAddress: string; newImplementationAddress: string; network: Network; proxyAdminAddress?: string; contractArtifactFile?: string; approvalProcessId?: string; } export declare function upgradeContract(args: FunctionArgs, client: DeployClient): Promise; //# sourceMappingURL=upgrade-contract.d.ts.map