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"; /** * List or search accounts to which the caller is connected. * * All supported query parameters are optional. If none are provided the response will include all connected accounts. * Pagination is supported via the `skip` and `count` query parameters. Searching by name and email will overlap and * return results based on relevance. Accounts with AccountType `guest` will not be included in the response. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) you'll need * to specify the `/accounts.read` scope. */ export declare function accountsListConnected(client: MoovCore, request: operations.ListConnectedAccountsForAccountRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=accountsListConnected.d.ts.map