import type { HttpClient } from "../core/http-client.js"; import type { ModelListOptions, ModelListResponse, ModelSpec, RequestOptions, RuntimeConfig } from "../types/index.js"; export declare class ModelsResource { private readonly config; private readonly http; constructor(config: RuntimeConfig, http: HttpClient); list(options?: ModelListOptions): Promise; getSpec(modelId: string, options?: RequestOptions): Promise; }