import type * as Square from "../index"; /** * Represents the details of a tender with `type` `CASH`. */ export interface TenderCashDetails { /** The total amount of cash provided by the buyer, before change is given. */ buyerTenderedMoney?: Square.Money; /** The amount of change returned to the buyer. */ changeBackMoney?: Square.Money; }