import { W3, SoltsiceContract } from '..'; /** * StorageFactory API */ export declare class StorageFactory extends SoltsiceContract { static readonly artifacts: any; static readonly bytecodeHash: string | undefined; static new(deploymentParams: W3.TX.TxParams, ctorParams?: {}, w3?: W3, link?: SoltsiceContract[], privateKey?: string): Promise; static at(address: string | object, w3?: W3): Promise; static deployed(w3?: W3): Promise; static newData(ctorParams?: {}, w3?: W3): string; protected constructor(deploymentParams: string | W3.TX.TxParams | object, ctorParams?: {}, w3?: W3, link?: SoltsiceContract[]); existingStorage(_0: string, txParams?: W3.TX.TxParams): Promise; produce: ((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; }; }