import { Condition } from './Condition.abstract'; import { InstantiableConfig } from '../../../Instantiable.abstract'; export declare class EscrowReward extends Condition { static getInstance(config: InstantiableConfig): Promise; hashValues(amount: number, receiver: string, sender: string, lockCondition: string, releaseCondition: string): Promise; fulfill(agreementId: string, amount: number, receiver: string, sender: string, lockCondition: string, releaseCondition: string, from?: string): any; }