import { Tree } from '@nx/devkit'; import { RootDockerOptions } from '../get-root-docker-options'; export declare function getServiceApiPrefixFromDockerFile(name: string, host: Tree): string | null; export declare function getServiceApiPrefixFromAppConfig(name: string, host: Tree): string | null; export declare function getServiceApiPrefixFromBuildArg(name: string, tree: Tree): string | null; export declare function getServiceApiPrefix(name: string, host: Tree): string; export declare function getServicePortFromMain(tree: Tree, projectName: string): string | null; export declare function getServicePortFromAppConfig(tree: Tree, projectName: string): string | null; export declare function getServicePort(tree: Tree, projectName: string, defaultPort?: string): string; export declare function buildImageName(docker: Record, rootDocker: RootDockerOptions, envExpression?: boolean): string;