type Invoice = {
    bill_to: string,
    currency?: string,
};

export default Invoice;
