import { type SandboxRegistryEntry } from "./registry.js"; export type SandboxContainerInfo = SandboxRegistryEntry & { running: boolean; imageMatch: boolean; }; export declare function listSandboxContainers(): Promise; export declare function removeSandboxContainer(containerName: string): Promise;