/**
 * PaymentMandate.ts
 *
 * @copyright Vitalii Savchuk <esvit666@gmail.com>
 * @package esvit/einvoicing
 * @licence MIT https://opensource.org/licenses/MIT
 */
import { ValueObject } from "../base/ValueObject";
export interface IPaymentMandate {
    reference?: string;
    account?: string;
}
export default class PaymentMandate extends ValueObject<IPaymentMandate> {
    static create(props: IPaymentMandate): PaymentMandate;
    toPrimitive(): IPaymentMandate;
}
