import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { PaymentOptionsDelayAction } from "./PaymentOptionsDelayAction"; export declare const PaymentOptions: core.serialization.ObjectSchema; export declare namespace PaymentOptions { interface Raw { autocomplete?: (boolean | null | undefined) | null; delay_duration?: (string | null | undefined) | null; accept_partial_authorization?: (boolean | null | undefined) | null; delay_action?: PaymentOptionsDelayAction.Raw | null; } }