import type { DeepPartial } from "../utils/deep-partial"; import type { DeepPick } from "../utils/deep-pick"; import type { EthereumConfig } from "./type"; type EtheriumConfigRequiredFields = DeepPick; export declare function extendConfig(additions: EtheriumConfigRequiredFields & DeepPartial, baseConfig?: EthereumConfig): EthereumConfig; export {};