import { ApplicationConfig } from '../types/container-config';
import { ServiceConnectionsConfig, ResolvedServiceConnection } from '../types/service-connections';
/**
 * Resolve service connections between components without provider-specific transformations
 * This provides basic information about service connections that each parser can use
 * to implement its own specific connection syntax
 */
export declare function resolveServiceConnections(config: ApplicationConfig, serviceConnections: ServiceConnectionsConfig): ResolvedServiceConnection[];
