declare function extractPublishedPortValueWithProtocol(yamlNode: unknown): {
    port: string;
    protocol: string;
};
declare function extractPublishedPortInterfaceValue(yamlNode: unknown): string;
declare function parsePortsRange(port: string): string[];
export { extractPublishedPortValueWithProtocol, extractPublishedPortInterfaceValue, parsePortsRange };
