import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ConfirmationDecision } from "./ConfirmationDecision"; export declare const ConfirmationOptions: core.serialization.ObjectSchema; export declare namespace ConfirmationOptions { interface Raw { title: string; body: string; agree_button_text: string; disagree_button_text?: (string | null | undefined) | null; decision?: ConfirmationDecision.Raw | null; } }