import { LoggingOptions } from './Enums';
export interface ConfigOptions {
    abiHost?: string;
    web3Url?: string;
    chainName?: string;
    walletAddress?: string;
    privateKey?: string;
    componentListAddress?: string;
    maximumBlockGas?: number;
    gasIncrement?: number;
    gasLimit?: number;
    createContractGasLimit?: number;
    gasMargin?: number;
    extraGasPrice?: number;
    repeatTxIncreasePrice?: number;
    retryPromise?: number;
    retryDelaySeconds?: number;
    loggingOptions?: LoggingOptions;
    mot?: string;
    motKovan?: string;
}
