import type { Container, ContainerOptions } from './types.js'; export type Backend = 'env' | 'sandbox' | 'podman'; export declare function resolveBackend(): Backend; export declare function createBackendContainer(backend: Backend, options?: ContainerOptions): Promise;