export declare function deploy(config: {
    web3: any;
    abi: any;
    bytecode: string;
    from: string;
    args?: any[];
    gas?: number;
    gasPrice?: number;
}): any;
