import { ShippoCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { ShippoError } from "../models/errors/shippoerror.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * List all carrier accounts * * @remarks * Returns a list of all carrier accounts connected to your Shippo account. These carrier accounts include both Shippo carrier accounts and your own carrier accounts that you have connected to your Shippo account. * * Additionally, you can get information about the service levels associated with each carrier account by passing in the `?service_levels=true` query parameter.
* Using it appends the property `service_levels` to each carrier account.
* By default, if the query parameter is omitted, the `service_levels` property will not be included in the response. */ export declare function carrierAccountsList(client: ShippoCore, request: operations.ListCarrierAccountsRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=carrierAccountsList.d.ts.map