import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CheckoutOptions } from "./CheckoutOptions"; import { PrePopulatedData } from "./PrePopulatedData"; export declare const PaymentLink: core.serialization.ObjectSchema; export declare namespace PaymentLink { interface Raw { id?: string | null; version: number; description?: (string | null | undefined) | null; order_id?: string | null; checkout_options?: CheckoutOptions.Raw | null; pre_populated_data?: PrePopulatedData.Raw | null; url?: string | null; long_url?: string | null; created_at?: string | null; updated_at?: string | null; payment_note?: (string | null | undefined) | null; } }