import { BigNumber } from 'bignumber.js'; import { W3, SoltsiceContract } from '..'; /** * BotManageable API */ export declare class BotManageable extends SoltsiceContract { static readonly artifacts: any; static readonly bytecodeHash: string | undefined; static new(deploymentParams: W3.TX.TxParams, ctorParams?: { _wallet: string; }, w3?: W3, link?: SoltsiceContract[], privateKey?: string): Promise; static at(address: string | object, w3?: W3): Promise; static deployed(w3?: W3): Promise; static newData(ctorParams?: { _wallet: string; }, w3?: W3): string; protected constructor(deploymentParams: string | W3.TX.TxParams | object, ctorParams?: { _wallet: string; }, w3?: W3, link?: SoltsiceContract[]); isOwner(_address: string, txParams?: W3.TX.TxParams): Promise; unpause: ((txParams?: W3.TX.TxParams | undefined, privateKey?: string | undefined) => Promise) & { sendTransaction: ((txParams?: W3.TX.TxParams | undefined) => Promise) & { sendSigned: (privateKey: string, txParams?: W3.TX.TxParams | undefined, nonce?: number | undefined) => Promise; }; } & { data: () => Promise; } & { estimateGas: () => Promise; }; wallet(txParams?: W3.TX.TxParams): Promise; paused(txParams?: W3.TX.TxParams): Promise; pause: ((txParams?: W3.TX.TxParams | undefined, privateKey?: string | undefined) => Promise) & { sendTransaction: ((txParams?: W3.TX.TxParams | undefined) => Promise) & { sendSigned: (privateKey: string, txParams?: W3.TX.TxParams | undefined, nonce?: number | undefined) => Promise; }; } & { data: () => Promise; } & { estimateGas: () => Promise; }; enableBot: ((_botAddress: string, txParams?: W3.TX.TxParams | undefined, privateKey?: string | undefined) => Promise) & { sendTransaction: ((_botAddress: string, txParams?: W3.TX.TxParams | undefined) => Promise) & { sendSigned: (_botAddress: string, privateKey: string, txParams?: W3.TX.TxParams | undefined, nonce?: number | undefined) => Promise; }; } & { data: (_botAddress: string) => Promise; } & { estimateGas: (_botAddress: string) => Promise; }; disableBot: ((_botAddress: string, _fromTimeStampSeconds: number | BigNumber, txParams?: W3.TX.TxParams | undefined, privateKey?: string | undefined) => Promise) & { sendTransaction: ((_botAddress: string, _fromTimeStampSeconds: number | BigNumber, txParams?: W3.TX.TxParams | undefined) => Promise) & { sendSigned: (_botAddress: string, _fromTimeStampSeconds: number | BigNumber, privateKey: string, txParams?: W3.TX.TxParams | undefined, nonce?: number | undefined) => Promise; }; } & { data: (_botAddress: string, _fromTimeStampSeconds: number | BigNumber) => Promise; } & { estimateGas: (_botAddress: string, _fromTimeStampSeconds: number | BigNumber) => Promise; }; isBot(_botAddress: string, txParams?: W3.TX.TxParams): Promise; isBotAt(_botAddress: string, _atTimeStampSeconds: BigNumber | number, txParams?: W3.TX.TxParams): Promise; }