import type { Container } from './types.js'; export interface UseContainerOptions { testName: string; workspaceDir?: string; useSnapshots?: boolean; } export declare function cleanupContainer(container: Container): Promise; export declare function useContainer(options: UseContainerOptions): Container;