import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Underwriting extends ClientSDK { /** * Retrieve underwriting associated with a given Moov account. * * Read our [underwriting guide](https://docs.moov.io/guides/accounts/requirements/underwriting/) to learn more. * * 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.read` scope. */ get(request: operations.GetUnderwritingRequest, options?: RequestOptions): Promise; /** * Create or update the account's underwriting. * * Read our [underwriting guide](https://docs.moov.io/guides/accounts/requirements/underwriting/) to learn more. * * 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. */ save(request: operations.SaveUnderwritingRequest, options?: RequestOptions): Promise; /** * Create or update the account's underwriting. * * Read our [underwriting guide](https://docs.moov.io/guides/accounts/requirements/underwriting/) to learn more. * * 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. */ upsert(request: operations.UpsertUnderwritingRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=underwriting.d.ts.map