export declare enum BackendDestinationEnum {
    REPO_ENDPOINT = 0,
    PORTAL_ENDPOINT = 1
}
declare type EndpointObject = {
    REPO: string;
    PORTAL: string;
};
export declare const getSynapsePortalEndpoint: (hostname: string) => string;
export declare const PRODUCTION_ENDPOINT_CONFIG: EndpointObject;
export declare const getEndpoint: (endpoint: BackendDestinationEnum) => string;
export {};
