/**
 * Lazy-loaded third-party dependencies
 * Each dependency is loaded only when first needed
 */
import { LazyModule } from './lazy-loader.js';
import type { Browser, BrowserContext } from 'playwright';
export declare const lazyPlaywright: LazyModule<typeof import('playwright')>;
export declare const lazyBrowser: {
    getBrowser: () => Promise<Browser>;
    getContext: () => Promise<BrowserContext>;
    releaseContext: (context: BrowserContext) => Promise<void>;
    cleanup: () => Promise<void>;
    getPlaywright: () => Promise<typeof import("playwright")>;
};
export declare const lazyTidewave: LazyModule<any>;
export declare const lazyNextJsEngine: LazyModule<any>;
export declare const lazyFlutterEngine: LazyModule<any>;
export declare const lazyPythonEngine: LazyModule<any>;
export declare const lazyDatabaseEngine: LazyModule<any>;
export declare const lazyRailsEngine: LazyModule<any>;
export declare const lazyMetaFrameworkEngine: LazyModule<any>;
export declare const lazyGraphQLEngine: LazyModule<any>;
export declare const lazyTDDEngine: LazyModule<any>;
export declare const lazyAITestEngine: LazyModule<any>;
export declare const lazyEvolutionEngine: LazyModule<any>;
export declare const lazyPerformanceProfiler: LazyModule<any>;
export declare const lazyAuditEngine: LazyModule<any>;
export declare const lazyVisualEngine: LazyModule<any>;
export declare const lazyFaultInjectionEngine: LazyModule<any>;
/**
 * Map of all lazy-loadable modules
 */
export declare const LAZY_MODULES: Record<string, LazyModule<any>>;
/**
 * Load dependencies required for a specific tool
 */
export declare function loadToolDependencies(toolName: string): Promise<Map<string, any>>;
/**
 * Cleanup all lazy-loaded resources
 */
export declare function cleanupLazyDependencies(): Promise<void>;
//# sourceMappingURL=lazy-dependencies.d.ts.map