import { APIResource } from "../../core/resource.mjs"; import { PagePromise, SinglePage } from "../../core/pagination.mjs"; import { RequestOptions } from "../../internal/request-options.mjs"; export declare class BaseAccountTypes extends APIResource { static readonly _key: readonly ['tenants', 'accountTypes']; /** * List of account types available for the Tenant to provision accounts. */ list(tenantID: string, options?: RequestOptions): PagePromise; } export declare class AccountTypes extends BaseAccountTypes { } export type AccountTypeListResponsesSinglePage = SinglePage; export type AccountTypeListResponse = string; export declare namespace AccountTypes { export { type AccountTypeListResponse as AccountTypeListResponse, type AccountTypeListResponsesSinglePage as AccountTypeListResponsesSinglePage, }; } //# sourceMappingURL=account-types.d.mts.map