import { Instructions, Prepare } from './types'; import { Adjustment, MaxAdjustment, MinAdjustment, Memo } from '../common/types/objects'; import { RippleAPI } from '..'; export interface Payment { source: Adjustment | MaxAdjustment; destination: Adjustment | MinAdjustment; paths?: string; memos?: Array; invoiceID?: string; allowPartialPayment?: boolean; noDirectRipple?: boolean; limitQuality?: boolean; } declare function preparePayment(this: RippleAPI, address: string, payment: Payment, instructions?: Instructions): Promise; export default preparePayment; //# sourceMappingURL=payment.d.ts.map