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"; /** * When **can** profile data be updated: * + For unverified accounts, all profile data can be edited. * + During the verification process, missing or incomplete profile data can be edited. * + Verified accounts can only add missing profile data. * * When **can't** profile data be updated: * + Verified accounts cannot change any existing profile data. * * If you need to update information in a locked state, please contact Moov support. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) you'll need * to specify the `/accounts/{accountID}/profile.write` scope. */ export declare function accountsUpdate(client: MoovCore, request: operations.UpdateAccountRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=accountsUpdate.d.ts.map