import type { ContainerResource } from "../core/types"; import { BaseDockerCommand } from "../core/base-command"; export declare class ContainerCommand extends BaseDockerCommand { type: "container"; selectionMessage: string; list(): Promise; formatResource(resource: ContainerResource): { title: string; value: string; description: string; }; remove(id: string): Promise; }