export type DisplayDomainDeployment = {
    subdomain: string;
    basePath: string;
    customDomains?: string[];
    auth?: unknown;
    atlas?: {
        id: string;
        repoUrl?: string;
    };
};
export declare function getDisplayDomain(deployment: DisplayDomainDeployment, isDev?: boolean, appendBasePath?: boolean): string;
