import type { MobyConnection } from 'docker-api-types'; import { Containers } from './resources/containers'; import { Execs } from './resources/execs'; import { System } from './resources/system'; export declare class Docker { version: string; host?: string; port?: number; baseUrl: string; fetchOptions: BunFetchRequestInit; containers: Containers; execs: Execs; system: System; constructor(options: MobyConnection.MobyConnectionOptions); /** * Query the API and update the version to match the API version from the * ping response. * * @see https://github.com/moby/moby/blob/v28.3.3/client/client.go#L283 */ negotiateApiVersion(): Promise; fetch(path: string, init?: BunFetchRequestInit): Promise; } //# sourceMappingURL=docker.d.ts.map