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"; import { PaymentLinkRelatedResources } from "./PaymentLinkRelatedResources"; export declare const CreatePaymentLinkResponse: core.serialization.ObjectSchema; export declare namespace CreatePaymentLinkResponse { interface Raw { errors?: Error_.Raw[] | null; payment_link?: PaymentLink.Raw | null; related_resources?: PaymentLinkRelatedResources.Raw | null; } }