import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { V1Money } from "./V1Money"; import { V1TenderCardBrand } from "./V1TenderCardBrand"; import { V1TenderEntryMethod } from "./V1TenderEntryMethod"; import { V1TenderType } from "./V1TenderType"; export declare const V1Tender: core.serialization.ObjectSchema; export declare namespace V1Tender { interface Raw { id?: string | null; type?: V1TenderType.Raw | null; name?: (string | null | undefined) | null; employee_id?: (string | null | undefined) | null; receipt_url?: (string | null | undefined) | null; card_brand?: V1TenderCardBrand.Raw | null; pan_suffix?: (string | null | undefined) | null; entry_method?: V1TenderEntryMethod.Raw | null; payment_note?: (string | null | undefined) | null; total_money?: V1Money.Raw | null; tendered_money?: V1Money.Raw | null; tendered_at?: (string | null | undefined) | null; settled_at?: (string | null | undefined) | null; change_back_money?: V1Money.Raw | null; refunded_money?: V1Money.Raw | null; is_exchange?: (boolean | null | undefined) | null; } }