import { HardhatRuntimeEnvironment } from 'hardhat/types'; import { ApprovalProcessResponse } from '@openzeppelin/defender-sdk-deploy-client'; export interface ApprovalProcess { approvalProcessId: string; address?: string; viaType?: ApprovalProcessResponse['viaType']; } export type GetDeployApprovalProcessFunction = () => Promise; export type GetUpgradeApprovalProcessFunction = () => Promise; export declare function makeGetDeployApprovalProcess(hre: HardhatRuntimeEnvironment): GetDeployApprovalProcessFunction; export declare function makeGetUpgradeApprovalProcess(hre: HardhatRuntimeEnvironment): GetUpgradeApprovalProcessFunction; //# sourceMappingURL=get-approval-process.d.ts.map