import { ISerializeOptions } from "../../../interfaces"; import { BigNumber, ByteBuffer } from "../../../utils"; import * as schemas from "../schemas"; import { Transaction } from "../transaction"; export declare abstract class MultiPaymentTransaction extends Transaction { static typeGroup: number; static type: number; static key: string; static version: number; protected static defaultStaticFee: BigNumber; static getSchema(): schemas.TransactionSchema; verify(): boolean; hasVendorField(): boolean; serialize(options?: ISerializeOptions): ByteBuffer | undefined; deserialize(buf: ByteBuffer): void; } //# sourceMappingURL=multi-payment.d.ts.map