import type { AxiosInstance } from 'axios'; export interface AddonTier { tier: string; tierDisplayName: string; } export interface Account { id: string; name: string; runtimeId: string; plan?: string; planDisplayName?: string; addons?: Record; } declare class Accounts { api: AxiosInstance; constructor(api: AxiosInstance); getAll(): Promise>; get(accountId: string): Promise>; } export default Accounts;