///
import PropTypes from 'prop-types';
declare const ShipperCardInvoice: {
({ title, reference, userReference, invoiceDate, dueDate, priceTtc, priceHt, vatAmount, downloadAction, invoiceDateTranslate, dueDateTranslate, withoutTaxes, withTaxes, VATAmount, downloadTranslate }: any): JSX.Element;
propTypes: {
/** text to display as title for the card, it can be component too */
title: PropTypes.Validator;
/** text to display as reference of the invoice */
reference: PropTypes.Validator;
/** text to display as user reference of the invoice */
userReference: PropTypes.Validator;
/** date to display as invoice date */
invoiceDate: PropTypes.Validator;
/** date to displaya as due date of the invoice */
dueDate: PropTypes.Validator;
/** number to display as ttc price of the invoice */
priceTtc: PropTypes.Validator;
/** number to display as ht price of the invoice */
priceHt: PropTypes.Validator;
/** price to display as vat amount of the invoice */
vatAmount: PropTypes.Validator;
/** function to be executed when download button is clicked */
downloadAction: PropTypes.Validator<(...args: any[]) => any>;
};
};
export default ShipperCardInvoice;