import { IFeeDetail } from '../../../transaction';
import { INatipayMercadoPago } from '../interfaces/i-mercado-pago';
export declare class NatipayMercadoPagoEntity implements INatipayMercadoPago {
    amountPaid: number;
    paymentId: string;
    paymentStatus: string;
    preferenceId: string;
    feeDetails: IFeeDetail[];
    constructor(data?: Partial<NatipayMercadoPagoEntity>);
}
