/** * Port Configuration API Service * Handles fetching port configuration from the backend */ import type { PortConfig } from '../types/index.js'; import type { EndpointConfig } from '../config/endpoints.js'; import type { AuthProvider } from '../types/auth.js'; /** * Fetch port configuration from API */ export declare function fetchPortConfig(endpointConfig: EndpointConfig, authProvider?: AuthProvider): Promise; /** * Validate port configuration structure */ export declare function validatePortConfig(config: PortConfig): boolean;