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