import { Price } from '../order/Price';
/** Details about a bill from customer */
export interface ReverseBill {
    /**  */
    date: string;
    /**  */
    orderId: number;
    /**  */
    password: string;
    /**  */
    pdfUrl: string;
    /**  */
    priceWithTax: Price;
    /**  */
    priceWithoutTax: Price;
    /**  */
    reverseBillId: string;
    /**  */
    tax: Price;
    /**  */
    url: string;
}
//# sourceMappingURL=ReverseBill.d.ts.map