import type { AxiosInstance } from 'axios'; import { Runtime } from '../runtimes/index.js'; declare class Runtimes { api: AxiosInstance; constructor(api: AxiosInstance); getAll(): Promise; get(runtimeId: string): Promise; } export default Runtimes;