import { MoovCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.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"; /** * Update a linked card and/or resubmit it for verification. * * If a value is provided for CVV, a new verification ($0 authorization) will be submitted for the card. Updating the expiration * date or * address will update the information stored on file for the card but will not be verified. * * Read our [accept card payments guide](https://docs.moov.io/guides/sources/cards/accept-card-payments/#reverify-a-card) to learn * more. * * Only use this endpoint if you have provided Moov with a copy of your PCI attestation of compliance. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/cards.write` scope. */ export declare function cardsUpdate(client: MoovCore, request: operations.UpdateCardRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=cardsUpdate.d.ts.map