import { BaseTransport } from './base.js'; import { TodoConfig } from '../types.js'; /** * Factory for creating transport instances based on configuration and environment */ export declare class TransportFactory { /** * Create a transport instance based on configuration and environment detection */ static create(config: TodoConfig): BaseTransport; /** * Detect the appropriate transport type based on environment and configuration * Currently always returns 'stdio' - HTTP detection preserved for future use */ private static detectTransportType; /** * Analyze the current environment to determine the best transport * Preserved for future HTTP transport re-enablement */ private static analyzeEnvironment; } //# sourceMappingURL=factory.d.ts.map