export declare class ContractVerificationConfig { contractName: string; constructorArguments: Array; isProxyVerification: boolean; hasLibraries: boolean; address: string; libraries?: string; deployedLibraries?: object; contractSpecifier?: string; constructor(contractName: string); withArguments(constructorArguments: unknown[]): this; withLibraries(deployedLibraries: object): this; withSpecifier(contractSpecifier: string): this; setAddress(deployedContractAddress: string): this; setLibrariesFilePath(librariesFilePath: string): this; setProxyVerification(): this; } //# sourceMappingURL=verification-config.d.ts.map