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