import { PolarCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { CheckoutLink } from "../models/components/checkoutlink.js"; import { CheckoutLinkCreate } from "../models/components/checkoutlinkcreate.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { HTTPValidationError } from "../models/errors/httpvalidationerror.js"; import { PolarError } from "../models/errors/polarerror.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Create Checkout Link * * @remarks * Create a checkout link. * * **Scopes**: `checkout_links:write` */ export declare function checkoutLinksCreate(client: PolarCore, request: CheckoutLinkCreate, options?: RequestOptions): APIPromise>; //# sourceMappingURL=checkoutLinksCreate.d.ts.map