import Account from './Account'; import { Instantiable, InstantiableConfig } from '../Instantiable.abstract'; export declare class OceanAgreementsConditions extends Instantiable { static getInstance(config: InstantiableConfig): Promise; lockReward(agreementId: string, amount: number | string, from?: Account): Promise; grantAccess(agreementId: string, did: string, grantee: string, from?: Account): Promise; grantCompute(agreementId: string, did: string, grantee: string, from?: Account): Promise; releaseReward(agreementId: string, amount: number, did: string, consumer: string, publisher: string, from?: Account): Promise; }