/** * Returns the container name for the given DAppNode package name, service name and isCore flag * @param dnpName DAppNode package name * @param serviceName Service name * @param isCore Flag indicating whether the container is a core container or not * @returns Container name in the format -, where container-prefix is the core or non-core prefix obtained from containerCoreNamePrefix and containerNamePrefix, respectively, and container-domain is the domain obtained with getContainerDomain */ export declare const getContainerName: ({ dnpName, serviceName, isCore, }: { dnpName: string; serviceName: string; isCore: boolean; }) => string; //# sourceMappingURL=getContainerName.d.ts.map