import { BillTypeEnum } from './BillTypeEnum';
/** Project bill */
export interface Bill {
    /** Bill id */
    billId: string;
    /** Bill type */
    type: BillTypeEnum;
}
//# sourceMappingURL=Bill.d.ts.map