import { IDesenfilaContainerOrderPayment } from '../interfaces';
export declare class DesenfilaContainerOrderPaymentEntity implements IDesenfilaContainerOrderPayment {
    amount: number;
    code: string;
    couponAmount: number;
    createdAt: Date;
    customerId: string;
    dateAproved: Date;
    description: string;
    id: string;
    marketPlaceAmount: number;
    merchant: string;
    merchantName: string;
    name: string;
    transaction: string;
    transactions: string[];
    constructor(data?: Partial<DesenfilaContainerOrderPaymentEntity>);
}
