import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "./models/operations/index.js"; import * as shared from "./models/shared/index.js"; export declare class BankAccounts extends ClientSDK { /** * List bank accounts * * @remarks * The *List bank accounts* endpoint returns a list of [bank accounts](https://docs.codat.io/bank-feeds-api#/schemas/BankAccount) for a given company's connection. * * [Bank accounts](https://docs.codat.io/bank-feeds-api#/schemas/BankAccount) are financial accounts maintained by a bank or other financial institution. * * Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/bank-feeds-api#/operations/refresh-company-data). */ list(request: operations.ListBankAccountsRequest, options?: RequestOptions): Promise; /** * Get create/update bank account model * * @remarks * The *Get create/update bank account model* endpoint returns the expected data for the request payload when creating and updating a [bank account](https://docs.codat.io/bank-feeds-api#/schemas/BankAccount) for a given company and integration. * * [Bank accounts](https://docs.codat.io/bank-feeds-api#/schemas/BankAccount) are financial accounts maintained by a bank or other financial institution. * * **Integration-specific behavior** * * See the *response examples* for integration-specific indicative models. */ getCreateModel(request: operations.GetCreateBankAccountsModelRequest, options?: RequestOptions): Promise; /** * Create bank account * * @remarks * The *Create bank account* endpoint creates a new [bank account](https://docs.codat.io/bank-feeds-api#/schemas/BankAccount) for a given company's connection. * * [Bank accounts](https://docs.codat.io/bank-feeds-api#/schemas/BankAccount) are financial accounts maintained by a bank or other financial institution. * * **Integration-specific behavior** * * Required data may vary by integration. To see what data to post, first call [Get create/update bank account model](https://docs.codat.io/bank-feeds-api#/operations/get-create-update-bankAccounts-model). */ create(request: operations.CreateBankAccountRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=bankaccounts.d.ts.map