import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Error_ } from "./Error_"; import { PaymentLink } from "./PaymentLink"; export declare const ListPaymentLinksResponse: core.serialization.ObjectSchema; export declare namespace ListPaymentLinksResponse { interface Raw { errors?: Error_.Raw[] | null; payment_links?: PaymentLink.Raw[] | null; cursor?: string | null; } }