/**
 * Source: https://github.com/OpenZeppelin/openzeppelin-upgrades
 */
import { Etherscan } from "@nomicfoundation/hardhat-verify/etherscan";
/**
 * The response body from an Etherscan API call.
 */
interface EtherscanResponseBody {
    status: string;
    message: string;
    result: any;
}
export declare const RESPONSE_OK = "1";
/**
 * Call the configured Etherscan API with the given parameters.
 */
export declare function callEtherscanApi(instance: Etherscan, params: any): Promise<EtherscanResponseBody>;
export {};
//# sourceMappingURL=etherscan-api.d.ts.map