import { MoovCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { MoovError } from "../models/errors/mooverror.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; export declare enum GetQRCodeAcceptEnum { applicationJson = "application/json", imagePng = "image/png" } /** * Retrieve the payment link encoded in a QR code. * * Use the `Accept` header to specify the format of the response. Supported formats are `application/json` and `image/png`. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/transfers.write` scope. */ export declare function paymentLinksGetQRCode(client: MoovCore, request: operations.GetPaymentLinkQRCodeRequest, options?: RequestOptions & { acceptHeaderOverride?: GetQRCodeAcceptEnum; }): APIPromise>; //# sourceMappingURL=paymentLinksGetQRCode.d.ts.map