import { BillItem, BillSummary } from './resources'; export declare type BillResponse = { bill: BillSummary & { line_items: BillItem[]; }; };