import { NotVault } from './notvault'; export declare class ServiceBus { vault: NotVault; constructor(vault: NotVault); setValue: (key: BigInt, value: BigInt) => Promise<{ value: string; hash: string; }>; getValue: (address: string, key: BigInt) => Promise; }