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