import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { TipSettings } from "./TipSettings"; export declare const DeviceCheckoutOptions: core.serialization.ObjectSchema; export declare namespace DeviceCheckoutOptions { interface Raw { device_id: string; skip_receipt_screen?: (boolean | null | undefined) | null; collect_signature?: (boolean | null | undefined) | null; tip_settings?: TipSettings.Raw | null; show_itemized_cart?: (boolean | null | undefined) | null; allow_auto_card_surcharge?: (boolean | null | undefined) | null; } }